KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jac > ide > diagrams > NewClassFigureCreationTool


1 /*
2   Copyright (C) 2002 Renaud Pawlak <renaud@aopsys.com>
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU Lesser General Public License as
6   published by the Free Software Foundation; either version 2 of the
7   License, or (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12   GNU Lesser General Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public
15   License along with this program; if not, write to the Free Software
16   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17   USA. */

18
19 package org.objectweb.jac.ide.diagrams;
20
21
22 import CH.ifa.draw.framework.DrawingEditor;
23 import java.awt.Point JavaDoc;
24 import java.awt.event.MouseEvent JavaDoc;
25 import org.objectweb.jac.aspects.gui.DisplayContext;
26 import org.objectweb.jac.aspects.gui.EventHandler;
27 import org.objectweb.jac.aspects.gui.InvokeEvent;
28 import org.objectweb.jac.core.rtti.ClassRepository;
29 import org.objectweb.jac.ide.Class;
30 import org.objectweb.jac.ide.Diagram;
31
32 public class NewClassFigureCreationTool extends CreationTool {
33
34     DisplayContext context;
35     int count = 0;
36
37     public NewClassFigureCreationTool(DrawingEditor newDrawingEditor,
38                                       DisplayContext context) {
39         super(newDrawingEditor);
40         this.context = context;
41     }
42
43     Point JavaDoc anchorPoint;
44
45     public void mouseDown(MouseEvent JavaDoc e, int x, int y) {
46         anchorPoint = new Point JavaDoc(x,y);
47         EventHandler.get().onInvoke(
48             context,
49             new InvokeEvent(null,
50                             this,
51                             ClassRepository.get().getClass(getClass())
52                             .getMethod("createNewClass(java.lang.String)")));
53         // (view().add(getCreatedFigure())).displayBox(anchorPoint, anchorPoint);
54
}
55
56     public void mouseUp(MouseEvent JavaDoc e, int x, int y) {
57     }
58
59     public void createNewClass(String JavaDoc name) {
60         if (name!=null) {
61             Class JavaDoc substance = new Class JavaDoc();
62             substance.setName(name);
63             Diagram diagram = (Diagram)((DiagramView)editor()).getSubstance();
64             // Add the class to the package of the diagram
65
diagram.getContainer().addClass(substance);
66             // Add the class to the diagram
67
((DiagramView)editor()).addClass(substance,anchorPoint);
68         }
69         editor().toolDone();
70     }
71 }
72
73
Popular Tags