/* * (c) 2011 - 2013 University of Mannheim: Software Engineering Group */ package de.uni_mannheim.informatik.swt.models.plm.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; /** * @generated */ public class ParticipationItemSemanticEditPolicy extends de.uni_mannheim.informatik.swt.models.plm.diagram.edit.policies.PLMBaseItemSemanticEditPolicy { /** * @generated */ public ParticipationItemSemanticEditPolicy() { super( de.uni_mannheim.informatik.swt.models.plm.diagram.providers.PLMElementTypes.Participation_4025); } /** * @generated */ protected Command getDestroyElementCommand(DestroyElementRequest req) { return getGEFWrapper(new DestroyElementCommand(req)); } }