/* * */ package comrel.diagram.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.DestroyElementRequest; import comrel.diagram.providers.ComrelElementTypes; /** * @generated */ public class MultiSinglePortMappingItemSemanticEditPolicy extends ComrelBaseItemSemanticEditPolicy { /** * @generated */ public MultiSinglePortMappingItemSemanticEditPolicy() { super(ComrelElementTypes.MultiSinglePortMapping_4003); } /** * @generated */ protected Command getDestroyElementCommand(DestroyElementRequest req) { return getGEFWrapper(new DestroyElementCommand(req)); } }