package org.eclipse.uml2.diagram.deploy.edit.policies; import org.eclipse.gef.commands.Command; 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.ReorientReferenceRelationshipRequest; import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; import org.eclipse.uml2.diagram.deploy.edit.commands.CommentAnnotatedElementCreateCommand; import org.eclipse.uml2.diagram.deploy.edit.commands.CommentAnnotatedElementReorientCommand; 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.ManifestationCreateCommand; import org.eclipse.uml2.diagram.deploy.edit.commands.ManifestationReorientCommand; import org.eclipse.uml2.diagram.deploy.edit.parts.CommentAnnotatedElementEditPart; import org.eclipse.uml2.diagram.deploy.edit.parts.DependencyEditPart; import org.eclipse.uml2.diagram.deploy.edit.parts.ManifestationEditPart; import org.eclipse.uml2.diagram.deploy.providers.UMLElementTypes; /** * @generated */ public class DependencyItemSemanticEditPolicy extends UMLBaseItemSemanticEditPolicy { /** * @generated */ public DependencyItemSemanticEditPolicy() { super(UMLElementTypes.Dependency_4005); } /** * @generated */ protected Command getDestroyElementCommand(DestroyElementRequest req) { return getGEFWrapper(new DestroyElementCommand(req)); } /** * @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.Manifestation_4002 == req.getElementType()) { return null; } if (UMLElementTypes.Dependency_4005 == req.getElementType()) { return getGEFWrapper(new DependencyCreateCommand(req, req.getSource(), req.getTarget())); } if (UMLElementTypes.CommentAnnotatedElement_4006 == req.getElementType()) { return null; } return null; } /** * @generated */ protected Command getCompleteCreateRelationshipCommand(CreateRelationshipRequest req) { if (UMLElementTypes.Manifestation_4002 == req.getElementType()) { return getGEFWrapper(new ManifestationCreateCommand(req, req.getSource(), req.getTarget())); } if (UMLElementTypes.Dependency_4005 == req.getElementType()) { return getGEFWrapper(new DependencyCreateCommand(req, req.getSource(), req.getTarget())); } if (UMLElementTypes.CommentAnnotatedElement_4006 == req.getElementType()) { return getGEFWrapper(new CommentAnnotatedElementCreateCommand(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 ManifestationEditPart.VISUAL_ID: return getGEFWrapper(new ManifestationReorientCommand(req)); case DependencyEditPart.VISUAL_ID: return getGEFWrapper(new DependencyReorientCommand(req)); } return super.getReorientRelationshipCommand(req); } /** * Returns command to reorient EReference based link. New link target or source * should be the domain model element associated with this node. * * @generated */ protected Command getReorientReferenceRelationshipCommand(ReorientReferenceRelationshipRequest req) { switch (getVisualID(req)) { case CommentAnnotatedElementEditPart.VISUAL_ID: return getGEFWrapper(new CommentAnnotatedElementReorientCommand(req)); } return super.getReorientReferenceRelationshipCommand(req); } }