package org.eclipse.uml2.diagram.clazz.edit.policies; import org.eclipse.gef.commands.Command; import org.eclipse.gmf.runtime.emf.type.core.commands.DestroyReferenceCommand; import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyReferenceRequest; import org.eclipse.uml2.diagram.clazz.providers.UMLElementTypes; /** * @generated */ public class DependencyClientItemSemanticEditPolicy extends UMLBaseItemSemanticEditPolicy { /** * @generated */ public DependencyClientItemSemanticEditPolicy() { super(UMLElementTypes.DependencyClient_4007); } /** * @generated */ protected Command getDestroyReferenceCommand(DestroyReferenceRequest req) { return getGEFWrapper(new DestroyReferenceCommand(req)); } }