1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
package org.argouml.model.euml; |
13 | |
|
14 | |
import org.argouml.model.AbstractModelFactory; |
15 | |
import org.argouml.model.CommonBehaviorFactory; |
16 | |
import org.eclipse.uml2.uml.OpaqueAction; |
17 | |
import org.eclipse.uml2.uml.Signal; |
18 | |
import org.eclipse.uml2.uml.UMLFactory; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | 0 | class CommonBehaviorFactoryEUMLImpl implements CommonBehaviorFactory, |
24 | |
AbstractModelFactory { |
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
private EUMLModelImplementation modelImpl; |
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | 0 | public CommonBehaviorFactoryEUMLImpl(EUMLModelImplementation implementation) { |
37 | 0 | modelImpl = implementation; |
38 | 0 | } |
39 | |
|
40 | |
public Object buildAction(Object message) { |
41 | |
|
42 | 0 | return null; |
43 | |
} |
44 | |
|
45 | |
public Object buildCallAction(Object oper, String name) { |
46 | |
|
47 | 0 | return null; |
48 | |
} |
49 | |
|
50 | |
public Object buildLink(Object fromInstance, Object toInstance) { |
51 | |
|
52 | 0 | return null; |
53 | |
} |
54 | |
|
55 | |
public Object buildReception(Object aClassifier) { |
56 | |
|
57 | 0 | return null; |
58 | |
} |
59 | |
|
60 | |
public Object buildSignal(Object element) { |
61 | |
|
62 | 0 | return null; |
63 | |
} |
64 | |
|
65 | |
public Object buildStimulus(Object link) { |
66 | |
|
67 | 0 | return null; |
68 | |
} |
69 | |
|
70 | |
public Object buildUninterpretedAction(Object actionState) { |
71 | |
|
72 | 0 | return null; |
73 | |
} |
74 | |
|
75 | |
public Object createActionSequence() { |
76 | |
|
77 | 0 | return null; |
78 | |
} |
79 | |
|
80 | |
public Object createArgument() { |
81 | |
|
82 | 0 | return null; |
83 | |
} |
84 | |
|
85 | |
public Object createAttributeLink() { |
86 | |
|
87 | 0 | return null; |
88 | |
} |
89 | |
|
90 | |
public Object createCallAction() { |
91 | |
|
92 | |
|
93 | 0 | return null; |
94 | |
} |
95 | |
|
96 | |
public Object createComponentInstance() { |
97 | |
|
98 | 0 | return null; |
99 | |
} |
100 | |
|
101 | |
public Object createCreateAction() { |
102 | 0 | return UMLFactory.eINSTANCE.createCreateObjectAction(); |
103 | |
} |
104 | |
|
105 | |
public Object createDataValue() { |
106 | |
|
107 | 0 | return null; |
108 | |
} |
109 | |
|
110 | |
public Object createDestroyAction() { |
111 | 0 | return UMLFactory.eINSTANCE.createDestroyObjectAction(); |
112 | |
} |
113 | |
|
114 | |
public Object createException() { |
115 | |
|
116 | 0 | return null; |
117 | |
} |
118 | |
|
119 | |
public Object createLink() { |
120 | |
|
121 | 0 | return null; |
122 | |
} |
123 | |
|
124 | |
public Object createLinkEnd() { |
125 | |
|
126 | 0 | return null; |
127 | |
} |
128 | |
|
129 | |
public Object createLinkObject() { |
130 | |
|
131 | 0 | return null; |
132 | |
} |
133 | |
|
134 | |
public Object createNodeInstance() { |
135 | |
|
136 | 0 | return null; |
137 | |
} |
138 | |
|
139 | |
public Object createObject() { |
140 | |
|
141 | 0 | return null; |
142 | |
} |
143 | |
|
144 | |
public Object createReception() { |
145 | 0 | return UMLFactory.eINSTANCE.createReception(); |
146 | |
} |
147 | |
|
148 | |
public Object createReturnAction() { |
149 | |
|
150 | 0 | return null; |
151 | |
} |
152 | |
|
153 | |
public Object createSendAction() { |
154 | 0 | return UMLFactory.eINSTANCE.createSendObjectAction(); |
155 | |
} |
156 | |
|
157 | |
public Signal createSignal() { |
158 | 0 | return UMLFactory.eINSTANCE.createSignal(); |
159 | |
} |
160 | |
|
161 | |
public Object createStimulus() { |
162 | |
|
163 | 0 | return null; |
164 | |
} |
165 | |
|
166 | |
public Object createSubsystemInstance() { |
167 | |
|
168 | 0 | return null; |
169 | |
} |
170 | |
|
171 | |
public Object createTerminateAction() { |
172 | |
|
173 | 0 | return null; |
174 | |
} |
175 | |
|
176 | |
public OpaqueAction createUninterpretedAction() { |
177 | |
|
178 | 0 | return null; |
179 | |
} |
180 | |
|
181 | |
|
182 | |
} |