KickJava   Java API By Example, From Geeks To Geeks.

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


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.Aspect;
30 import org.objectweb.jac.ide.Diagram;
31
32 public class NewAspectFigureCreationTool extends CreationTool {
33
34    DisplayContext context;
35    int count=0;
36
37    public NewAspectFigureCreationTool(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(
50              null,
51              this,
52              ClassRepository.get().getClass(getClass())
53              .getMethod("createNewAspect(java.lang.String)")));
54       // (view().add(getCreatedFigure())).displayBox(anchorPoint, anchorPoint);
55
}
56
57    public void mouseUp(MouseEvent JavaDoc e, int x, int y) {
58    }
59
60    public void createNewAspect(String JavaDoc name) {
61       if(name!=null) {
62          ClassFigure cf = null;
63          Aspect substance = new Aspect();
64          org.objectweb.jac.ide.ClassFigure figure = new org.objectweb.jac.ide.ClassFigure(substance);
65          substance.setName(name);
66          Diagram diagram = (Diagram)((DiagramView)editor()).getSubstance();
67          diagram.addFigure(figure);
68          diagram.getContainer().addAspect(substance);
69          cf = new AspectFigure(figure,diagram.getContainer(),
70                               ((DiagramView)editor()).view());
71          (view().add(cf)).displayBox(anchorPoint, anchorPoint);
72       }
73       editor().toolDone();
74    }
75 }
76
77
Popular Tags