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 AssemblyConnectorItemSemanticEditPolicy extends |
15 | PalladioComponentModelBaseItemSemanticEditPolicy { |
16 | |
17 | /** |
18 | * @generated |
19 | */ |
20 | public AssemblyConnectorItemSemanticEditPolicy() { |
21 | super(PalladioComponentModelElementTypes.AssemblyConnector_4004); |
22 | } |
23 | |
24 | /** |
25 | * @generated |
26 | */ |
27 | protected Command getDestroyElementCommand(DestroyElementRequest req) { |
28 | return getGEFWrapper(new DestroyElementCommand(req)); |
29 | } |
30 | |
31 | } |