Package org.asem.eclipse.mii.model.commands

Examples of org.asem.eclipse.mii.model.commands.ConnectionReconnectCommand


             * (org.eclipse.gef.requests.ReconnectRequest)
             */
            protected Command getReconnectSourceCommand(ReconnectRequest request) {
                Connection conn = (Connection) request.getConnectionEditPart().getModel();
                AbstractModelShape newSource = (AbstractModelShape) getHost().getModel();
                ConnectionReconnectCommand cmd = new ConnectionReconnectCommand(conn);
                cmd.setNewSource(newSource);
                return cmd;
            }

            /*
             * (non-Javadoc)
             *
             * @see org.eclipse.gef.editpolicies.GraphicalNodeEditPolicy# getReconnectTargetCommand
             * (org.eclipse.gef.requests.ReconnectRequest)
             */
            protected Command getReconnectTargetCommand(ReconnectRequest request) {
                Connection conn = (Connection) request.getConnectionEditPart().getModel();
                AbstractModelShape newTarget = (AbstractModelShape) getHost().getModel();
                ConnectionReconnectCommand cmd = new ConnectionReconnectCommand(conn);
                cmd.setNewTarget(newTarget);
                return cmd;
            }
        });
    }
View Full Code Here

TOP

Related Classes of org.asem.eclipse.mii.model.commands.ConnectionReconnectCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.