1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.fzi.se.quality.qualityannotation.util; |
8 | |
9 | import de.fzi.se.quality.QualityStatement; |
10 | |
11 | import de.fzi.se.quality.parameters.ParameterPartition; |
12 | |
13 | import de.fzi.se.quality.qualityannotation.*; |
14 | |
15 | import de.uka.ipd.sdq.identifier.Identifier; |
16 | |
17 | import org.eclipse.emf.common.notify.Adapter; |
18 | import org.eclipse.emf.common.notify.Notifier; |
19 | |
20 | import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; |
21 | |
22 | import org.eclipse.emf.ecore.EObject; |
23 | |
24 | /** |
25 | * <!-- begin-user-doc --> |
26 | * The <b>Adapter Factory</b> for the model. |
27 | * It provides an adapter <code>createXXX</code> method for each class of the model. |
28 | * <!-- end-user-doc --> |
29 | * @see de.fzi.se.quality.qualityannotation.QualityAnnotationPackage |
30 | * @generated |
31 | */ |
32 | public class QualityAnnotationAdapterFactory extends AdapterFactoryImpl { |
33 | /** |
34 | * The cached model package. |
35 | * <!-- begin-user-doc --> |
36 | * <!-- end-user-doc --> |
37 | * @generated |
38 | */ |
39 | protected static QualityAnnotationPackage modelPackage; |
40 | |
41 | /** |
42 | * Creates an instance of the adapter factory. |
43 | * <!-- begin-user-doc --> |
44 | * <!-- end-user-doc --> |
45 | * @generated |
46 | */ |
47 | public QualityAnnotationAdapterFactory() { |
48 | if (modelPackage == null) { |
49 | modelPackage = QualityAnnotationPackage.eINSTANCE; |
50 | } |
51 | } |
52 | |
53 | /** |
54 | * Returns whether this factory is applicable for the type of the object. |
55 | * <!-- begin-user-doc --> |
56 | * This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model. |
57 | * <!-- end-user-doc --> |
58 | * @return whether this factory is applicable for the type of the object. |
59 | * @generated |
60 | */ |
61 | @Override |
62 | public boolean isFactoryForType(Object object) { |
63 | if (object == modelPackage) { |
64 | return true; |
65 | } |
66 | if (object instanceof EObject) { |
67 | return ((EObject)object).eClass().getEPackage() == modelPackage; |
68 | } |
69 | return false; |
70 | } |
71 | |
72 | /** |
73 | * The switch that delegates to the <code>createXXX</code> methods. |
74 | * <!-- begin-user-doc --> |
75 | * <!-- end-user-doc --> |
76 | * @generated |
77 | */ |
78 | protected QualityAnnotationSwitch<Adapter> modelSwitch = |
79 | new QualityAnnotationSwitch<Adapter>() { |
80 | @Override |
81 | public Adapter caseCallParameterDeviation(CallParameterDeviation object) { |
82 | return createCallParameterDeviationAdapter(); |
83 | } |
84 | @Override |
85 | public Adapter caseQualityAnnotation(QualityAnnotation object) { |
86 | return createQualityAnnotationAdapter(); |
87 | } |
88 | @Override |
89 | public Adapter caseServiceSpecification(ServiceSpecification object) { |
90 | return createServiceSpecificationAdapter(); |
91 | } |
92 | @Override |
93 | public Adapter caseRequiredElement(RequiredElement object) { |
94 | return createRequiredElementAdapter(); |
95 | } |
96 | @Override |
97 | public Adapter caseNumberOfCallsDeviation(NumberOfCallsDeviation object) { |
98 | return createNumberOfCallsDeviationAdapter(); |
99 | } |
100 | @Override |
101 | public Adapter caseInternalStateInfluenceAnalysisAggregation(InternalStateInfluenceAnalysisAggregation object) { |
102 | return createInternalStateInfluenceAnalysisAggregationAdapter(); |
103 | } |
104 | @Override |
105 | public Adapter caseREPrecision(REPrecision object) { |
106 | return createREPrecisionAdapter(); |
107 | } |
108 | @Override |
109 | public Adapter casePrecision(Precision object) { |
110 | return createPrecisionAdapter(); |
111 | } |
112 | @Override |
113 | public Adapter casePCMParameterPartition(PCMParameterPartition object) { |
114 | return createPCMParameterPartitionAdapter(); |
115 | } |
116 | @Override |
117 | public Adapter caseCharacterisedPCMParameterPartition(CharacterisedPCMParameterPartition object) { |
118 | return createCharacterisedPCMParameterPartitionAdapter(); |
119 | } |
120 | @Override |
121 | public Adapter caseCharacterisedPCMParameterPartitionInterval(CharacterisedPCMParameterPartitionInterval object) { |
122 | return createCharacterisedPCMParameterPartitionIntervalAdapter(); |
123 | } |
124 | @Override |
125 | public Adapter caseCharacterisedPCMParameterPartitionRange(CharacterisedPCMParameterPartitionRange object) { |
126 | return createCharacterisedPCMParameterPartitionRangeAdapter(); |
127 | } |
128 | @Override |
129 | public Adapter caseExactlyAsSpecifiedPrecision(ExactlyAsSpecifiedPrecision object) { |
130 | return createExactlyAsSpecifiedPrecisionAdapter(); |
131 | } |
132 | @Override |
133 | public Adapter caseLimitedDeviationPrecision(LimitedDeviationPrecision object) { |
134 | return createLimitedDeviationPrecisionAdapter(); |
135 | } |
136 | @Override |
137 | public Adapter caseNoPrecision(NoPrecision object) { |
138 | return createNoPrecisionAdapter(); |
139 | } |
140 | @Override |
141 | public Adapter casePCMRECategory(PCMRECategory object) { |
142 | return createPCMRECategoryAdapter(); |
143 | } |
144 | @Override |
145 | public Adapter casePCMRE(PCMRE object) { |
146 | return createPCMREAdapter(); |
147 | } |
148 | @Override |
149 | public Adapter casePCMREInterface(PCMREInterface object) { |
150 | return createPCMREInterfaceAdapter(); |
151 | } |
152 | @Override |
153 | public Adapter casePCMRERole(PCMRERole object) { |
154 | return createPCMRERoleAdapter(); |
155 | } |
156 | @Override |
157 | public Adapter casePCMRESignature(PCMRESignature object) { |
158 | return createPCMRESignatureAdapter(); |
159 | } |
160 | @Override |
161 | public Adapter casePCMServiceSpecification(PCMServiceSpecification object) { |
162 | return createPCMServiceSpecificationAdapter(); |
163 | } |
164 | @Override |
165 | public Adapter casePCMREResourceInterface(PCMREResourceInterface object) { |
166 | return createPCMREResourceInterfaceAdapter(); |
167 | } |
168 | @Override |
169 | public Adapter casePCMREResourceSignature(PCMREResourceSignature object) { |
170 | return createPCMREResourceSignatureAdapter(); |
171 | } |
172 | @Override |
173 | public Adapter caseIdentifier(Identifier object) { |
174 | return createIdentifierAdapter(); |
175 | } |
176 | @Override |
177 | public Adapter caseQualityStatement(QualityStatement object) { |
178 | return createQualityStatementAdapter(); |
179 | } |
180 | @Override |
181 | public Adapter caseParameterPartition(ParameterPartition object) { |
182 | return createParameterPartitionAdapter(); |
183 | } |
184 | @Override |
185 | public Adapter defaultCase(EObject object) { |
186 | return createEObjectAdapter(); |
187 | } |
188 | }; |
189 | |
190 | /** |
191 | * Creates an adapter for the <code>target</code>. |
192 | * <!-- begin-user-doc --> |
193 | * <!-- end-user-doc --> |
194 | * @param target the object to adapt. |
195 | * @return the adapter for the <code>target</code>. |
196 | * @generated |
197 | */ |
198 | @Override |
199 | public Adapter createAdapter(Notifier target) { |
200 | return modelSwitch.doSwitch((EObject)target); |
201 | } |
202 | |
203 | |
204 | /** |
205 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.CallParameterDeviation <em>Call Parameter Deviation</em>}'. |
206 | * <!-- begin-user-doc --> |
207 | * This default implementation returns null so that we can easily ignore cases; |
208 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
209 | * <!-- end-user-doc --> |
210 | * @return the new adapter. |
211 | * @see de.fzi.se.quality.qualityannotation.CallParameterDeviation |
212 | * @generated |
213 | */ |
214 | public Adapter createCallParameterDeviationAdapter() { |
215 | return null; |
216 | } |
217 | |
218 | /** |
219 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.QualityAnnotation <em>Quality Annotation</em>}'. |
220 | * <!-- begin-user-doc --> |
221 | * This default implementation returns null so that we can easily ignore cases; |
222 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
223 | * <!-- end-user-doc --> |
224 | * @return the new adapter. |
225 | * @see de.fzi.se.quality.qualityannotation.QualityAnnotation |
226 | * @generated |
227 | */ |
228 | public Adapter createQualityAnnotationAdapter() { |
229 | return null; |
230 | } |
231 | |
232 | /** |
233 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.ServiceSpecification <em>Service Specification</em>}'. |
234 | * <!-- begin-user-doc --> |
235 | * This default implementation returns null so that we can easily ignore cases; |
236 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
237 | * <!-- end-user-doc --> |
238 | * @return the new adapter. |
239 | * @see de.fzi.se.quality.qualityannotation.ServiceSpecification |
240 | * @generated |
241 | */ |
242 | public Adapter createServiceSpecificationAdapter() { |
243 | return null; |
244 | } |
245 | |
246 | /** |
247 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.RequiredElement <em>Required Element</em>}'. |
248 | * <!-- begin-user-doc --> |
249 | * This default implementation returns null so that we can easily ignore cases; |
250 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
251 | * <!-- end-user-doc --> |
252 | * @return the new adapter. |
253 | * @see de.fzi.se.quality.qualityannotation.RequiredElement |
254 | * @generated |
255 | */ |
256 | public Adapter createRequiredElementAdapter() { |
257 | return null; |
258 | } |
259 | |
260 | /** |
261 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.NumberOfCallsDeviation <em>Number Of Calls Deviation</em>}'. |
262 | * <!-- begin-user-doc --> |
263 | * This default implementation returns null so that we can easily ignore cases; |
264 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
265 | * <!-- end-user-doc --> |
266 | * @return the new adapter. |
267 | * @see de.fzi.se.quality.qualityannotation.NumberOfCallsDeviation |
268 | * @generated |
269 | */ |
270 | public Adapter createNumberOfCallsDeviationAdapter() { |
271 | return null; |
272 | } |
273 | |
274 | /** |
275 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.InternalStateInfluenceAnalysisAggregation <em>Internal State Influence Analysis Aggregation</em>}'. |
276 | * <!-- begin-user-doc --> |
277 | * This default implementation returns null so that we can easily ignore cases; |
278 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
279 | * <!-- end-user-doc --> |
280 | * @return the new adapter. |
281 | * @see de.fzi.se.quality.qualityannotation.InternalStateInfluenceAnalysisAggregation |
282 | * @generated |
283 | */ |
284 | public Adapter createInternalStateInfluenceAnalysisAggregationAdapter() { |
285 | return null; |
286 | } |
287 | |
288 | /** |
289 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.REPrecision <em>RE Precision</em>}'. |
290 | * <!-- begin-user-doc --> |
291 | * This default implementation returns null so that we can easily ignore cases; |
292 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
293 | * <!-- end-user-doc --> |
294 | * @return the new adapter. |
295 | * @see de.fzi.se.quality.qualityannotation.REPrecision |
296 | * @generated |
297 | */ |
298 | public Adapter createREPrecisionAdapter() { |
299 | return null; |
300 | } |
301 | |
302 | /** |
303 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.Precision <em>Precision</em>}'. |
304 | * <!-- begin-user-doc --> |
305 | * This default implementation returns null so that we can easily ignore cases; |
306 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
307 | * <!-- end-user-doc --> |
308 | * @return the new adapter. |
309 | * @see de.fzi.se.quality.qualityannotation.Precision |
310 | * @generated |
311 | */ |
312 | public Adapter createPrecisionAdapter() { |
313 | return null; |
314 | } |
315 | |
316 | /** |
317 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.PCMParameterPartition <em>PCM Parameter Partition</em>}'. |
318 | * <!-- begin-user-doc --> |
319 | * This default implementation returns null so that we can easily ignore cases; |
320 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
321 | * <!-- end-user-doc --> |
322 | * @return the new adapter. |
323 | * @see de.fzi.se.quality.qualityannotation.PCMParameterPartition |
324 | * @generated |
325 | */ |
326 | public Adapter createPCMParameterPartitionAdapter() { |
327 | return null; |
328 | } |
329 | |
330 | /** |
331 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.CharacterisedPCMParameterPartition <em>Characterised PCM Parameter Partition</em>}'. |
332 | * <!-- begin-user-doc --> |
333 | * This default implementation returns null so that we can easily ignore cases; |
334 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
335 | * <!-- end-user-doc --> |
336 | * @return the new adapter. |
337 | * @see de.fzi.se.quality.qualityannotation.CharacterisedPCMParameterPartition |
338 | * @generated |
339 | */ |
340 | public Adapter createCharacterisedPCMParameterPartitionAdapter() { |
341 | return null; |
342 | } |
343 | |
344 | /** |
345 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.CharacterisedPCMParameterPartitionInterval <em>Characterised PCM Parameter Partition Interval</em>}'. |
346 | * <!-- begin-user-doc --> |
347 | * This default implementation returns null so that we can easily ignore cases; |
348 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
349 | * <!-- end-user-doc --> |
350 | * @return the new adapter. |
351 | * @see de.fzi.se.quality.qualityannotation.CharacterisedPCMParameterPartitionInterval |
352 | * @generated |
353 | */ |
354 | public Adapter createCharacterisedPCMParameterPartitionIntervalAdapter() { |
355 | return null; |
356 | } |
357 | |
358 | /** |
359 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.CharacterisedPCMParameterPartitionRange <em>Characterised PCM Parameter Partition Range</em>}'. |
360 | * <!-- begin-user-doc --> |
361 | * This default implementation returns null so that we can easily ignore cases; |
362 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
363 | * <!-- end-user-doc --> |
364 | * @return the new adapter. |
365 | * @see de.fzi.se.quality.qualityannotation.CharacterisedPCMParameterPartitionRange |
366 | * @generated |
367 | */ |
368 | public Adapter createCharacterisedPCMParameterPartitionRangeAdapter() { |
369 | return null; |
370 | } |
371 | |
372 | /** |
373 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.ExactlyAsSpecifiedPrecision <em>Exactly As Specified Precision</em>}'. |
374 | * <!-- begin-user-doc --> |
375 | * This default implementation returns null so that we can easily ignore cases; |
376 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
377 | * <!-- end-user-doc --> |
378 | * @return the new adapter. |
379 | * @see de.fzi.se.quality.qualityannotation.ExactlyAsSpecifiedPrecision |
380 | * @generated |
381 | */ |
382 | public Adapter createExactlyAsSpecifiedPrecisionAdapter() { |
383 | return null; |
384 | } |
385 | |
386 | /** |
387 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.LimitedDeviationPrecision <em>Limited Deviation Precision</em>}'. |
388 | * <!-- begin-user-doc --> |
389 | * This default implementation returns null so that we can easily ignore cases; |
390 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
391 | * <!-- end-user-doc --> |
392 | * @return the new adapter. |
393 | * @see de.fzi.se.quality.qualityannotation.LimitedDeviationPrecision |
394 | * @generated |
395 | */ |
396 | public Adapter createLimitedDeviationPrecisionAdapter() { |
397 | return null; |
398 | } |
399 | |
400 | /** |
401 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.NoPrecision <em>No Precision</em>}'. |
402 | * <!-- begin-user-doc --> |
403 | * This default implementation returns null so that we can easily ignore cases; |
404 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
405 | * <!-- end-user-doc --> |
406 | * @return the new adapter. |
407 | * @see de.fzi.se.quality.qualityannotation.NoPrecision |
408 | * @generated |
409 | */ |
410 | public Adapter createNoPrecisionAdapter() { |
411 | return null; |
412 | } |
413 | |
414 | /** |
415 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.PCMRECategory <em>PCMRE Category</em>}'. |
416 | * <!-- begin-user-doc --> |
417 | * This default implementation returns null so that we can easily ignore cases; |
418 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
419 | * <!-- end-user-doc --> |
420 | * @return the new adapter. |
421 | * @see de.fzi.se.quality.qualityannotation.PCMRECategory |
422 | * @generated |
423 | */ |
424 | public Adapter createPCMRECategoryAdapter() { |
425 | return null; |
426 | } |
427 | |
428 | /** |
429 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.PCMRE <em>PCMRE</em>}'. |
430 | * <!-- begin-user-doc --> |
431 | * This default implementation returns null so that we can easily ignore cases; |
432 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
433 | * <!-- end-user-doc --> |
434 | * @return the new adapter. |
435 | * @see de.fzi.se.quality.qualityannotation.PCMRE |
436 | * @generated |
437 | */ |
438 | public Adapter createPCMREAdapter() { |
439 | return null; |
440 | } |
441 | |
442 | /** |
443 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.PCMREInterface <em>PCMRE Interface</em>}'. |
444 | * <!-- begin-user-doc --> |
445 | * This default implementation returns null so that we can easily ignore cases; |
446 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
447 | * <!-- end-user-doc --> |
448 | * @return the new adapter. |
449 | * @see de.fzi.se.quality.qualityannotation.PCMREInterface |
450 | * @generated |
451 | */ |
452 | public Adapter createPCMREInterfaceAdapter() { |
453 | return null; |
454 | } |
455 | |
456 | /** |
457 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.PCMRERole <em>PCMRE Role</em>}'. |
458 | * <!-- begin-user-doc --> |
459 | * This default implementation returns null so that we can easily ignore cases; |
460 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
461 | * <!-- end-user-doc --> |
462 | * @return the new adapter. |
463 | * @see de.fzi.se.quality.qualityannotation.PCMRERole |
464 | * @generated |
465 | */ |
466 | public Adapter createPCMRERoleAdapter() { |
467 | return null; |
468 | } |
469 | |
470 | /** |
471 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.PCMRESignature <em>PCMRE Signature</em>}'. |
472 | * <!-- begin-user-doc --> |
473 | * This default implementation returns null so that we can easily ignore cases; |
474 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
475 | * <!-- end-user-doc --> |
476 | * @return the new adapter. |
477 | * @see de.fzi.se.quality.qualityannotation.PCMRESignature |
478 | * @generated |
479 | */ |
480 | public Adapter createPCMRESignatureAdapter() { |
481 | return null; |
482 | } |
483 | |
484 | /** |
485 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.PCMServiceSpecification <em>PCM Service Specification</em>}'. |
486 | * <!-- begin-user-doc --> |
487 | * This default implementation returns null so that we can easily ignore cases; |
488 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
489 | * <!-- end-user-doc --> |
490 | * @return the new adapter. |
491 | * @see de.fzi.se.quality.qualityannotation.PCMServiceSpecification |
492 | * @generated |
493 | */ |
494 | public Adapter createPCMServiceSpecificationAdapter() { |
495 | return null; |
496 | } |
497 | |
498 | /** |
499 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.PCMREResourceInterface <em>PCMRE Resource Interface</em>}'. |
500 | * <!-- begin-user-doc --> |
501 | * This default implementation returns null so that we can easily ignore cases; |
502 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
503 | * <!-- end-user-doc --> |
504 | * @return the new adapter. |
505 | * @see de.fzi.se.quality.qualityannotation.PCMREResourceInterface |
506 | * @generated |
507 | */ |
508 | public Adapter createPCMREResourceInterfaceAdapter() { |
509 | return null; |
510 | } |
511 | |
512 | /** |
513 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.qualityannotation.PCMREResourceSignature <em>PCMRE Resource Signature</em>}'. |
514 | * <!-- begin-user-doc --> |
515 | * This default implementation returns null so that we can easily ignore cases; |
516 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
517 | * <!-- end-user-doc --> |
518 | * @return the new adapter. |
519 | * @see de.fzi.se.quality.qualityannotation.PCMREResourceSignature |
520 | * @generated |
521 | */ |
522 | public Adapter createPCMREResourceSignatureAdapter() { |
523 | return null; |
524 | } |
525 | |
526 | /** |
527 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.identifier.Identifier <em>Identifier</em>}'. |
528 | * <!-- begin-user-doc --> |
529 | * This default implementation returns null so that we can easily ignore cases; |
530 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
531 | * <!-- end-user-doc --> |
532 | * @return the new adapter. |
533 | * @see de.uka.ipd.sdq.identifier.Identifier |
534 | * @generated |
535 | */ |
536 | public Adapter createIdentifierAdapter() { |
537 | return null; |
538 | } |
539 | |
540 | /** |
541 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.QualityStatement <em>Statement</em>}'. |
542 | * <!-- begin-user-doc --> |
543 | * This default implementation returns null so that we can easily ignore cases; |
544 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
545 | * <!-- end-user-doc --> |
546 | * @return the new adapter. |
547 | * @see de.fzi.se.quality.QualityStatement |
548 | * @generated |
549 | */ |
550 | public Adapter createQualityStatementAdapter() { |
551 | return null; |
552 | } |
553 | |
554 | /** |
555 | * Creates a new adapter for an object of class '{@link de.fzi.se.quality.parameters.ParameterPartition <em>Parameter Partition</em>}'. |
556 | * <!-- begin-user-doc --> |
557 | * This default implementation returns null so that we can easily ignore cases; |
558 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
559 | * <!-- end-user-doc --> |
560 | * @return the new adapter. |
561 | * @see de.fzi.se.quality.parameters.ParameterPartition |
562 | * @generated |
563 | */ |
564 | public Adapter createParameterPartitionAdapter() { |
565 | return null; |
566 | } |
567 | |
568 | /** |
569 | * Creates a new adapter for the default case. |
570 | * <!-- begin-user-doc --> |
571 | * This default implementation returns null. |
572 | * <!-- end-user-doc --> |
573 | * @return the new adapter. |
574 | * @generated |
575 | */ |
576 | public Adapter createEObjectAdapter() { |
577 | return null; |
578 | } |
579 | |
580 | } //QualityAnnotationAdapterFactory |