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.requests.CreateElementRequest; |
8 | |
9 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.AcquireAction2CreateCommand; |
10 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.BranchAction2CreateCommand; |
11 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.CollectionIteratorAction2CreateCommand; |
12 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.EmitEventAction2CreateCommand; |
13 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.ExternalCallAction2CreateCommand; |
14 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.ForkAction2CreateCommand; |
15 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.InternalAction2CreateCommand; |
16 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.LoopAction2CreateCommand; |
17 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.RecoveryAction2CreateCommand; |
18 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.ReleaseAction2CreateCommand; |
19 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.StartAction2CreateCommand; |
20 | import de.uka.ipd.sdq.pcm.gmf.seff.edit.commands.StopAction2CreateCommand; |
21 | import de.uka.ipd.sdq.pcm.gmf.seff.providers.PalladioComponentModelElementTypes; |
22 | |
23 | /** |
24 | * @generated |
25 | */ |
26 | public class ResourceDemandingBehaviourBehaviourCompartment3ItemSemanticEditPolicy |
27 | extends PalladioComponentModelBaseItemSemanticEditPolicy { |
28 | |
29 | /** |
30 | * @generated |
31 | */ |
32 | public ResourceDemandingBehaviourBehaviourCompartment3ItemSemanticEditPolicy() { |
33 | super( |
34 | PalladioComponentModelElementTypes.ResourceDemandingBehaviour_3014); |
35 | } |
36 | |
37 | /** |
38 | * @generated |
39 | */ |
40 | protected Command getCreateCommand(CreateElementRequest req) { |
41 | if (PalladioComponentModelElementTypes.StartAction_3004 == req |
42 | .getElementType()) { |
43 | return getGEFWrapper(new StartAction2CreateCommand(req)); |
44 | } |
45 | if (PalladioComponentModelElementTypes.StopAction_3005 == req |
46 | .getElementType()) { |
47 | return getGEFWrapper(new StopAction2CreateCommand(req)); |
48 | } |
49 | if (PalladioComponentModelElementTypes.LoopAction_3006 == req |
50 | .getElementType()) { |
51 | return getGEFWrapper(new LoopAction2CreateCommand(req)); |
52 | } |
53 | if (PalladioComponentModelElementTypes.InternalAction_3007 == req |
54 | .getElementType()) { |
55 | return getGEFWrapper(new InternalAction2CreateCommand(req)); |
56 | } |
57 | if (PalladioComponentModelElementTypes.BranchAction_3009 == req |
58 | .getElementType()) { |
59 | return getGEFWrapper(new BranchAction2CreateCommand(req)); |
60 | } |
61 | if (PalladioComponentModelElementTypes.ExternalCallAction_3012 == req |
62 | .getElementType()) { |
63 | return getGEFWrapper(new ExternalCallAction2CreateCommand(req)); |
64 | } |
65 | if (PalladioComponentModelElementTypes.EmitEventAction_3046 == req |
66 | .getElementType()) { |
67 | return getGEFWrapper(new EmitEventAction2CreateCommand(req)); |
68 | } |
69 | if (PalladioComponentModelElementTypes.CollectionIteratorAction_3013 == req |
70 | .getElementType()) { |
71 | return getGEFWrapper(new CollectionIteratorAction2CreateCommand(req)); |
72 | } |
73 | if (PalladioComponentModelElementTypes.AcquireAction_3026 == req |
74 | .getElementType()) { |
75 | return getGEFWrapper(new AcquireAction2CreateCommand(req)); |
76 | } |
77 | if (PalladioComponentModelElementTypes.ReleaseAction_3020 == req |
78 | .getElementType()) { |
79 | return getGEFWrapper(new ReleaseAction2CreateCommand(req)); |
80 | } |
81 | if (PalladioComponentModelElementTypes.ForkAction_3023 == req |
82 | .getElementType()) { |
83 | return getGEFWrapper(new ForkAction2CreateCommand(req)); |
84 | } |
85 | if (PalladioComponentModelElementTypes.RecoveryAction_3057 == req |
86 | .getElementType()) { |
87 | return getGEFWrapper(new RecoveryAction2CreateCommand(req)); |
88 | } |
89 | return super.getCreateCommand(req); |
90 | } |
91 | |
92 | } |