Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv9105/src/net/sourceforge/bprocessor/gl/view
Modified Files:
PopupMenu.java
Log Message:
Index: PopupMenu.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/PopupMenu.java,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** PopupMenu.java 13 Jul 2010 12:33:48 -0000 1.48
--- PopupMenu.java 6 Sep 2010 13:08:40 -0000 1.49
***************
*** 58,61 ****
--- 58,63 ----
import net.sourceforge.bprocessor.model.Command.BoundingSphere;
import net.sourceforge.bprocessor.model.modellor.Modellor;
+ import net.sourceforge.bprocessor.model.plugin.FacadePackage;
+ import net.sourceforge.bprocessor.model.plugin.NetCommand;
import org.apache.log4j.Logger;
***************
*** 350,354 ****
AbstractAction action = new SpaceMenuAction(sp, "Frame..") {
public void actionPerformed(ActionEvent event) {
! Command command = new Command.Frame(space);
AttributeView.instance().display(command);
space.getOwner().add(command);
--- 352,357 ----
AbstractAction action = new SpaceMenuAction(sp, "Frame..") {
public void actionPerformed(ActionEvent event) {
! NetCommand command = new FacadePackage.Frame();
! command.initialize(space);
AttributeView.instance().display(command);
space.getOwner().add(command);
|