package org.eclipse.uml2.diagram.clazz.edit.policies; import org.eclipse.emf.ecore.EAnnotation; import org.eclipse.gef.commands.Command; import org.eclipse.gef.commands.CompoundCommand; import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; import org.eclipse.gmf.runtime.emf.commands.core.command.CompositeTransactionalCommand; 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.gmf.runtime.notation.View; import org.eclipse.uml2.diagram.clazz.edit.commands.ConstraintConstrainedElementCreateCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.ConstraintConstrainedElementReorientCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.DependencyClientCreateCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.DependencyClientReorientCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.DependencyLinkCreateCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.DependencyLinkReorientCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.DependencySupplierCreateCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.DependencySupplierReorientCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.RealizationCreateCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.RealizationReorientCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.TemplateBindingCreateCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.TemplateBindingReorientCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.UsageCreateCommand; import org.eclipse.uml2.diagram.clazz.edit.commands.UsageReorientCommand; import org.eclipse.uml2.diagram.clazz.edit.parts.ConstraintConstrainedElementEditPart; import org.eclipse.uml2.diagram.clazz.edit.parts.Dependency2EditPart; import org.eclipse.uml2.diagram.clazz.edit.parts.DependencyClientEditPart; import org.eclipse.uml2.diagram.clazz.edit.parts.DependencySupplierEditPart; import org.eclipse.uml2.diagram.clazz.edit.parts.RealizationEditPart; import org.eclipse.uml2.diagram.clazz.edit.parts.TemplateBindingEditPart; import org.eclipse.uml2.diagram.clazz.edit.parts.UsageEditPart; import org.eclipse.uml2.diagram.clazz.providers.UMLElementTypes; /** * @generated */ public class OperationItemSemanticEditPolicy extends UMLBaseItemSemanticEditPolicy { /** * @generated */ public OperationItemSemanticEditPolicy() { super(UMLElementTypes.Operation_3002); } /** * @generated */ protected Command getDestroyElementCommand(DestroyElementRequest req) { View view = (View) getHost().getModel(); CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(getEditingDomain(), null); cmd.setTransactionNestingEnabled(false); EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$ if (annotation == null) { // there are indirectly referenced children, need extra commands: false addDestroyShortcutsCommand(cmd, view); // delete host element cmd.add(new DestroyElementCommand(req)); } else { cmd.add(new DeleteCommand(getEditingDomain(), view)); } return getGEFWrapper(cmd.reduce()); } }