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