| 1 | /* |
| 2 | *Copyright 2006 SDQ Research Group, University of Karlsruhe (TH) |
| 3 | */ |
| 4 | package de.uka.ipd.sdq.pcm.gmf.seff.edit.policies; |
| 5 | |
| 6 | import org.eclipse.gef.commands.Command; |
| 7 | import org.eclipse.gmf.runtime.emf.type.core.commands.DestroyReferenceCommand; |
| 8 | import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyReferenceRequest; |
| 9 | |
| 10 | import de.uka.ipd.sdq.pcm.gmf.seff.providers.PalladioComponentModelElementTypes; |
| 11 | |
| 12 | /** |
| 13 | * @generated |
| 14 | */ |
| 15 | public class AbstractActionSuccessor_AbstractActionItemSemanticEditPolicy |
| 16 | extends PalladioComponentModelBaseItemSemanticEditPolicy { |
| 17 | |
| 18 | /** |
| 19 | * @generated |
| 20 | */ |
| 21 | public AbstractActionSuccessor_AbstractActionItemSemanticEditPolicy() { |
| 22 | super( |
| 23 | PalladioComponentModelElementTypes.AbstractActionSuccessor_AbstractAction_4001); |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * @generated |
| 28 | */ |
| 29 | protected Command getDestroyReferenceCommand(DestroyReferenceRequest req) { |
| 30 | return getGEFWrapper(new DestroyReferenceCommand(req)); |
| 31 | } |
| 32 | } |