blob: a235c7fdaf59d3e04ec9e0f54ca4fc93c6dd6b2e [file] [log] [blame]
package org.eclipse.uml2.diagram.deploy.edit.policies;
import java.util.Iterator;
import org.eclipse.emf.ecore.EAnnotation;
import org.eclipse.gef.commands.Command;
import org.eclipse.gef.commands.CompoundCommand;
import org.eclipse.gmf.runtime.emf.type.core.commands.DestroyElementCommand;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateRelationshipRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest;
import org.eclipse.gmf.runtime.notation.Node;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.uml2.diagram.deploy.edit.commands.CommunicationPathCreateCommand;
import org.eclipse.uml2.diagram.deploy.edit.commands.CommunicationPathReorientCommand;
import org.eclipse.uml2.diagram.deploy.edit.commands.DependencyCreateCommand;
import org.eclipse.uml2.diagram.deploy.edit.commands.DependencyReorientCommand;
import org.eclipse.uml2.diagram.deploy.edit.commands.DeploymentCreateCommand;
import org.eclipse.uml2.diagram.deploy.edit.commands.DeploymentReorientCommand;
import org.eclipse.uml2.diagram.deploy.edit.commands.ManifestationCreateCommand;
import org.eclipse.uml2.diagram.deploy.edit.commands.ManifestationReorientCommand;
import org.eclipse.uml2.diagram.deploy.edit.parts.ArtifactEditPart;
import org.eclipse.uml2.diagram.deploy.edit.parts.CommunicationPathEditPart;
import org.eclipse.uml2.diagram.deploy.edit.parts.DependencyEditPart;
import org.eclipse.uml2.diagram.deploy.edit.parts.DeploymentEditPart;
import org.eclipse.uml2.diagram.deploy.edit.parts.Device2EditPart;
import org.eclipse.uml2.diagram.deploy.edit.parts.DeviceDevicecontentsEditPart;
import org.eclipse.uml2.diagram.deploy.edit.parts.ExecutionEnvironment2EditPart;
import org.eclipse.uml2.diagram.deploy.edit.parts.ManifestationEditPart;
import org.eclipse.uml2.diagram.deploy.edit.parts.Node2EditPart;
import org.eclipse.uml2.diagram.deploy.part.UMLVisualIDRegistry;
import org.eclipse.uml2.diagram.deploy.providers.UMLElementTypes;
/**
* @generated
*/
public class DeviceItemSemanticEditPolicy extends UMLBaseItemSemanticEditPolicy {
/**
* @generated
*/
protected Command getDestroyElementCommand(DestroyElementRequest req) {
CompoundCommand cc = getDestroyEdgesCommand();
addDestroyChildNodesCommand(cc);
addDestroyShortcutsCommand(cc);
View view = (View) getHost().getModel();
if (view.getEAnnotation("Shortcut") != null) { //$NON-NLS-1$
req.setElementToDestroy(view);
}
cc.add(getGEFWrapper(new DestroyElementCommand(req)));
return cc.unwrap();
}
/**
* @generated
*/
protected void addDestroyChildNodesCommand(CompoundCommand cmd) {
View view = (View) getHost().getModel();
EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
if (annotation != null) {
return;
}
for (Iterator it = view.getChildren().iterator(); it.hasNext();) {
Node node = (Node) it.next();
switch (UMLVisualIDRegistry.getVisualID(node)) {
case DeviceDevicecontentsEditPart.VISUAL_ID:
for (Iterator cit = node.getChildren().iterator(); cit.hasNext();) {
Node cnode = (Node) cit.next();
switch (UMLVisualIDRegistry.getVisualID(cnode)) {
case Device2EditPart.VISUAL_ID:
cmd.add(getDestroyElementCommand(cnode));
break;
case ArtifactEditPart.VISUAL_ID:
cmd.add(getDestroyElementCommand(cnode));
break;
case ExecutionEnvironment2EditPart.VISUAL_ID:
cmd.add(getDestroyElementCommand(cnode));
break;
case Node2EditPart.VISUAL_ID:
cmd.add(getDestroyElementCommand(cnode));
break;
}
}
break;
}
}
}
/**
* @generated
*/
protected Command getCreateRelationshipCommand(CreateRelationshipRequest req) {
Command command = req.getTarget() == null ? getStartCreateRelationshipCommand(req) : getCompleteCreateRelationshipCommand(req);
return command != null ? command : super.getCreateRelationshipCommand(req);
}
/**
* @generated
*/
protected Command getStartCreateRelationshipCommand(CreateRelationshipRequest req) {
if (UMLElementTypes.Deployment_4001 == req.getElementType()) {
return getGEFWrapper(new DeploymentCreateCommand(req, req.getSource(), req.getTarget()));
}
if (UMLElementTypes.Manifestation_4002 == req.getElementType()) {
return null;
}
if (UMLElementTypes.CommunicationPath_4004 == req.getElementType()) {
return getGEFWrapper(new CommunicationPathCreateCommand(req, req.getSource(), req.getTarget()));
}
if (UMLElementTypes.Dependency_4005 == req.getElementType()) {
return getGEFWrapper(new DependencyCreateCommand(req, req.getSource(), req.getTarget()));
}
return null;
}
/**
* @generated
*/
protected Command getCompleteCreateRelationshipCommand(CreateRelationshipRequest req) {
if (UMLElementTypes.Deployment_4001 == req.getElementType()) {
return getGEFWrapper(new DeploymentCreateCommand(req, req.getTarget(), req.getSource()));
}
if (UMLElementTypes.Manifestation_4002 == req.getElementType()) {
return getGEFWrapper(new ManifestationCreateCommand(req, req.getSource(), req.getTarget()));
}
if (UMLElementTypes.CommunicationPath_4004 == req.getElementType()) {
return getGEFWrapper(new CommunicationPathCreateCommand(req, req.getSource(), req.getTarget()));
}
if (UMLElementTypes.Dependency_4005 == req.getElementType()) {
return getGEFWrapper(new DependencyCreateCommand(req, req.getSource(), req.getTarget()));
}
return null;
}
/**
* Returns command to reorient EClass based link. New link target or source
* should be the domain model element associated with this node.
*
* @generated
*/
protected Command getReorientRelationshipCommand(ReorientRelationshipRequest req) {
switch (getVisualID(req)) {
case DeploymentEditPart.VISUAL_ID:
return getGEFWrapper(new DeploymentReorientCommand(req));
case ManifestationEditPart.VISUAL_ID:
return getGEFWrapper(new ManifestationReorientCommand(req));
case CommunicationPathEditPart.VISUAL_ID:
return getGEFWrapper(new CommunicationPathReorientCommand(req));
case DependencyEditPart.VISUAL_ID:
return getGEFWrapper(new DependencyReorientCommand(req));
}
return super.getReorientRelationshipCommand(req);
}
}