| 1 | /** |
| 2 | * Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany |
| 3 | * |
| 4 | * $Id$ |
| 5 | */ |
| 6 | package de.uka.ipd.sdq.pcm.seff.util; |
| 7 | |
| 8 | import org.eclipse.emf.common.notify.Adapter; |
| 9 | import org.eclipse.emf.common.notify.Notifier; |
| 10 | import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; |
| 11 | import org.eclipse.emf.ecore.EObject; |
| 12 | |
| 13 | import de.uka.ipd.sdq.identifier.Identifier; |
| 14 | import de.uka.ipd.sdq.pcm.core.entity.Entity; |
| 15 | import de.uka.ipd.sdq.pcm.core.entity.NamedElement; |
| 16 | import de.uka.ipd.sdq.pcm.seff.*; |
| 17 | import de.uka.ipd.sdq.pcm.seff.AbstractAction; |
| 18 | import de.uka.ipd.sdq.pcm.seff.AbstractBranchTransition; |
| 19 | import de.uka.ipd.sdq.pcm.seff.AbstractInternalControlFlowAction; |
| 20 | import de.uka.ipd.sdq.pcm.seff.AbstractLoopAction; |
| 21 | import de.uka.ipd.sdq.pcm.seff.AcquireAction; |
| 22 | import de.uka.ipd.sdq.pcm.seff.BranchAction; |
| 23 | import de.uka.ipd.sdq.pcm.seff.CallAction; |
| 24 | import de.uka.ipd.sdq.pcm.seff.CallReturnAction; |
| 25 | import de.uka.ipd.sdq.pcm.seff.CollectionIteratorAction; |
| 26 | import de.uka.ipd.sdq.pcm.seff.EmitEventAction; |
| 27 | import de.uka.ipd.sdq.pcm.seff.ExternalCallAction; |
| 28 | import de.uka.ipd.sdq.pcm.seff.ForkAction; |
| 29 | import de.uka.ipd.sdq.pcm.seff.ForkedBehaviour; |
| 30 | import de.uka.ipd.sdq.pcm.seff.GuardedBranchTransition; |
| 31 | import de.uka.ipd.sdq.pcm.seff.InternalAction; |
| 32 | import de.uka.ipd.sdq.pcm.seff.InternalCallAction; |
| 33 | import de.uka.ipd.sdq.pcm.seff.LoopAction; |
| 34 | import de.uka.ipd.sdq.pcm.seff.ProbabilisticBranchTransition; |
| 35 | import de.uka.ipd.sdq.pcm.seff.ReleaseAction; |
| 36 | import de.uka.ipd.sdq.pcm.seff.ResourceDemandingBehaviour; |
| 37 | import de.uka.ipd.sdq.pcm.seff.ResourceDemandingInternalBehaviour; |
| 38 | import de.uka.ipd.sdq.pcm.seff.ResourceDemandingSEFF; |
| 39 | import de.uka.ipd.sdq.pcm.seff.SeffPackage; |
| 40 | import de.uka.ipd.sdq.pcm.seff.ServiceEffectSpecification; |
| 41 | import de.uka.ipd.sdq.pcm.seff.SetVariableAction; |
| 42 | import de.uka.ipd.sdq.pcm.seff.StartAction; |
| 43 | import de.uka.ipd.sdq.pcm.seff.StopAction; |
| 44 | import de.uka.ipd.sdq.pcm.seff.SynchronisationPoint; |
| 45 | import de.uka.ipd.sdq.pcm.seff.seff_reliability.FailureHandlingEntity; |
| 46 | |
| 47 | /** |
| 48 | * <!-- begin-user-doc --> |
| 49 | * The <b>Adapter Factory</b> for the model. |
| 50 | * It provides an adapter <code>createXXX</code> method for each class of the model. |
| 51 | * <!-- end-user-doc --> |
| 52 | * @see de.uka.ipd.sdq.pcm.seff.SeffPackage |
| 53 | * @generated |
| 54 | */ |
| 55 | public class SeffAdapterFactory extends AdapterFactoryImpl { |
| 56 | /** |
| 57 | * <!-- begin-user-doc --> |
| 58 | * <!-- end-user-doc --> |
| 59 | * @generated |
| 60 | */ |
| 61 | public static final String copyright = "Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany"; |
| 62 | |
| 63 | /** |
| 64 | * The cached model package. |
| 65 | * <!-- begin-user-doc --> |
| 66 | * <!-- end-user-doc --> |
| 67 | * @generated |
| 68 | */ |
| 69 | protected static SeffPackage modelPackage; |
| 70 | |
| 71 | /** |
| 72 | * Creates an instance of the adapter factory. |
| 73 | * <!-- begin-user-doc --> |
| 74 | * <!-- end-user-doc --> |
| 75 | * @generated |
| 76 | */ |
| 77 | public SeffAdapterFactory() { |
| 78 | if (modelPackage == null) { |
| 79 | modelPackage = SeffPackage.eINSTANCE; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Returns whether this factory is applicable for the type of the object. |
| 85 | * <!-- begin-user-doc --> |
| 86 | * This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model. |
| 87 | * <!-- end-user-doc --> |
| 88 | * @return whether this factory is applicable for the type of the object. |
| 89 | * @generated |
| 90 | */ |
| 91 | @Override |
| 92 | public boolean isFactoryForType(Object object) { |
| 93 | if (object == modelPackage) { |
| 94 | return true; |
| 95 | } |
| 96 | if (object instanceof EObject) { |
| 97 | return ((EObject)object).eClass().getEPackage() == modelPackage; |
| 98 | } |
| 99 | return false; |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * The switch that delegates to the <code>createXXX</code> methods. |
| 104 | * <!-- begin-user-doc --> |
| 105 | * <!-- end-user-doc --> |
| 106 | * @generated |
| 107 | */ |
| 108 | protected SeffSwitch<Adapter> modelSwitch = |
| 109 | new SeffSwitch<Adapter>() { |
| 110 | @Override |
| 111 | public Adapter caseStopAction(StopAction object) { |
| 112 | return createStopActionAdapter(); |
| 113 | } |
| 114 | @Override |
| 115 | public Adapter caseAbstractInternalControlFlowAction(AbstractInternalControlFlowAction object) { |
| 116 | return createAbstractInternalControlFlowActionAdapter(); |
| 117 | } |
| 118 | @Override |
| 119 | public Adapter caseAbstractAction(AbstractAction object) { |
| 120 | return createAbstractActionAdapter(); |
| 121 | } |
| 122 | @Override |
| 123 | public Adapter caseResourceDemandingBehaviour(ResourceDemandingBehaviour object) { |
| 124 | return createResourceDemandingBehaviourAdapter(); |
| 125 | } |
| 126 | @Override |
| 127 | public Adapter caseAbstractLoopAction(AbstractLoopAction object) { |
| 128 | return createAbstractLoopActionAdapter(); |
| 129 | } |
| 130 | @Override |
| 131 | public Adapter caseAbstractBranchTransition(AbstractBranchTransition object) { |
| 132 | return createAbstractBranchTransitionAdapter(); |
| 133 | } |
| 134 | @Override |
| 135 | public Adapter caseBranchAction(BranchAction object) { |
| 136 | return createBranchActionAdapter(); |
| 137 | } |
| 138 | @Override |
| 139 | public Adapter caseCallAction(CallAction object) { |
| 140 | return createCallActionAdapter(); |
| 141 | } |
| 142 | @Override |
| 143 | public Adapter caseStartAction(StartAction object) { |
| 144 | return createStartActionAdapter(); |
| 145 | } |
| 146 | @Override |
| 147 | public Adapter caseServiceEffectSpecification(ServiceEffectSpecification object) { |
| 148 | return createServiceEffectSpecificationAdapter(); |
| 149 | } |
| 150 | @Override |
| 151 | public Adapter caseResourceDemandingSEFF(ResourceDemandingSEFF object) { |
| 152 | return createResourceDemandingSEFFAdapter(); |
| 153 | } |
| 154 | @Override |
| 155 | public Adapter caseResourceDemandingInternalBehaviour(ResourceDemandingInternalBehaviour object) { |
| 156 | return createResourceDemandingInternalBehaviourAdapter(); |
| 157 | } |
| 158 | @Override |
| 159 | public Adapter caseReleaseAction(ReleaseAction object) { |
| 160 | return createReleaseActionAdapter(); |
| 161 | } |
| 162 | @Override |
| 163 | public Adapter caseLoopAction(LoopAction object) { |
| 164 | return createLoopActionAdapter(); |
| 165 | } |
| 166 | @Override |
| 167 | public Adapter caseForkAction(ForkAction object) { |
| 168 | return createForkActionAdapter(); |
| 169 | } |
| 170 | @Override |
| 171 | public Adapter caseForkedBehaviour(ForkedBehaviour object) { |
| 172 | return createForkedBehaviourAdapter(); |
| 173 | } |
| 174 | @Override |
| 175 | public Adapter caseSynchronisationPoint(SynchronisationPoint object) { |
| 176 | return createSynchronisationPointAdapter(); |
| 177 | } |
| 178 | @Override |
| 179 | public Adapter caseExternalCallAction(ExternalCallAction object) { |
| 180 | return createExternalCallActionAdapter(); |
| 181 | } |
| 182 | @Override |
| 183 | public Adapter caseCallReturnAction(CallReturnAction object) { |
| 184 | return createCallReturnActionAdapter(); |
| 185 | } |
| 186 | @Override |
| 187 | public Adapter caseProbabilisticBranchTransition(ProbabilisticBranchTransition object) { |
| 188 | return createProbabilisticBranchTransitionAdapter(); |
| 189 | } |
| 190 | @Override |
| 191 | public Adapter caseAcquireAction(AcquireAction object) { |
| 192 | return createAcquireActionAdapter(); |
| 193 | } |
| 194 | @Override |
| 195 | public Adapter caseCollectionIteratorAction(CollectionIteratorAction object) { |
| 196 | return createCollectionIteratorActionAdapter(); |
| 197 | } |
| 198 | @Override |
| 199 | public Adapter caseGuardedBranchTransition(GuardedBranchTransition object) { |
| 200 | return createGuardedBranchTransitionAdapter(); |
| 201 | } |
| 202 | @Override |
| 203 | public Adapter caseSetVariableAction(SetVariableAction object) { |
| 204 | return createSetVariableActionAdapter(); |
| 205 | } |
| 206 | @Override |
| 207 | public Adapter caseInternalCallAction(InternalCallAction object) { |
| 208 | return createInternalCallActionAdapter(); |
| 209 | } |
| 210 | @Override |
| 211 | public Adapter caseEmitEventAction(EmitEventAction object) { |
| 212 | return createEmitEventActionAdapter(); |
| 213 | } |
| 214 | @Override |
| 215 | public Adapter caseInternalAction(InternalAction object) { |
| 216 | return createInternalActionAdapter(); |
| 217 | } |
| 218 | @Override |
| 219 | public Adapter caseIdentifier(Identifier object) { |
| 220 | return createIdentifierAdapter(); |
| 221 | } |
| 222 | @Override |
| 223 | public Adapter caseNamedElement(NamedElement object) { |
| 224 | return createNamedElementAdapter(); |
| 225 | } |
| 226 | @Override |
| 227 | public Adapter caseEntity(Entity object) { |
| 228 | return createEntityAdapter(); |
| 229 | } |
| 230 | @Override |
| 231 | public Adapter caseFailureHandlingEntity(FailureHandlingEntity object) { |
| 232 | return createFailureHandlingEntityAdapter(); |
| 233 | } |
| 234 | @Override |
| 235 | public Adapter defaultCase(EObject object) { |
| 236 | return createEObjectAdapter(); |
| 237 | } |
| 238 | }; |
| 239 | |
| 240 | /** |
| 241 | * Creates an adapter for the <code>target</code>. |
| 242 | * <!-- begin-user-doc --> |
| 243 | * <!-- end-user-doc --> |
| 244 | * @param target the object to adapt. |
| 245 | * @return the adapter for the <code>target</code>. |
| 246 | * @generated |
| 247 | */ |
| 248 | @Override |
| 249 | public Adapter createAdapter(Notifier target) { |
| 250 | return modelSwitch.doSwitch((EObject)target); |
| 251 | } |
| 252 | |
| 253 | |
| 254 | /** |
| 255 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.StopAction <em>Stop Action</em>}'. |
| 256 | * <!-- begin-user-doc --> |
| 257 | * This default implementation returns null so that we can easily ignore cases; |
| 258 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 259 | * <!-- end-user-doc --> |
| 260 | * @return the new adapter. |
| 261 | * @see de.uka.ipd.sdq.pcm.seff.StopAction |
| 262 | * @generated |
| 263 | */ |
| 264 | public Adapter createStopActionAdapter() { |
| 265 | return null; |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.AbstractInternalControlFlowAction <em>Abstract Internal Control Flow Action</em>}'. |
| 270 | * <!-- begin-user-doc --> |
| 271 | * This default implementation returns null so that we can easily ignore cases; |
| 272 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 273 | * <!-- end-user-doc --> |
| 274 | * @return the new adapter. |
| 275 | * @see de.uka.ipd.sdq.pcm.seff.AbstractInternalControlFlowAction |
| 276 | * @generated |
| 277 | */ |
| 278 | public Adapter createAbstractInternalControlFlowActionAdapter() { |
| 279 | return null; |
| 280 | } |
| 281 | |
| 282 | /** |
| 283 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.AbstractAction <em>Abstract Action</em>}'. |
| 284 | * <!-- begin-user-doc --> |
| 285 | * This default implementation returns null so that we can easily ignore cases; |
| 286 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 287 | * <!-- end-user-doc --> |
| 288 | * @return the new adapter. |
| 289 | * @see de.uka.ipd.sdq.pcm.seff.AbstractAction |
| 290 | * @generated |
| 291 | */ |
| 292 | public Adapter createAbstractActionAdapter() { |
| 293 | return null; |
| 294 | } |
| 295 | |
| 296 | /** |
| 297 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.ResourceDemandingBehaviour <em>Resource Demanding Behaviour</em>}'. |
| 298 | * <!-- begin-user-doc --> |
| 299 | * This default implementation returns null so that we can easily ignore cases; |
| 300 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 301 | * <!-- end-user-doc --> |
| 302 | * @return the new adapter. |
| 303 | * @see de.uka.ipd.sdq.pcm.seff.ResourceDemandingBehaviour |
| 304 | * @generated |
| 305 | */ |
| 306 | public Adapter createResourceDemandingBehaviourAdapter() { |
| 307 | return null; |
| 308 | } |
| 309 | |
| 310 | /** |
| 311 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.AbstractLoopAction <em>Abstract Loop Action</em>}'. |
| 312 | * <!-- begin-user-doc --> |
| 313 | * This default implementation returns null so that we can easily ignore cases; |
| 314 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 315 | * <!-- end-user-doc --> |
| 316 | * @return the new adapter. |
| 317 | * @see de.uka.ipd.sdq.pcm.seff.AbstractLoopAction |
| 318 | * @generated |
| 319 | */ |
| 320 | public Adapter createAbstractLoopActionAdapter() { |
| 321 | return null; |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.AbstractBranchTransition <em>Abstract Branch Transition</em>}'. |
| 326 | * <!-- begin-user-doc --> |
| 327 | * This default implementation returns null so that we can easily ignore cases; |
| 328 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 329 | * <!-- end-user-doc --> |
| 330 | * @return the new adapter. |
| 331 | * @see de.uka.ipd.sdq.pcm.seff.AbstractBranchTransition |
| 332 | * @generated |
| 333 | */ |
| 334 | public Adapter createAbstractBranchTransitionAdapter() { |
| 335 | return null; |
| 336 | } |
| 337 | |
| 338 | /** |
| 339 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.BranchAction <em>Branch Action</em>}'. |
| 340 | * <!-- begin-user-doc --> |
| 341 | * This default implementation returns null so that we can easily ignore cases; |
| 342 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 343 | * <!-- end-user-doc --> |
| 344 | * @return the new adapter. |
| 345 | * @see de.uka.ipd.sdq.pcm.seff.BranchAction |
| 346 | * @generated |
| 347 | */ |
| 348 | public Adapter createBranchActionAdapter() { |
| 349 | return null; |
| 350 | } |
| 351 | |
| 352 | /** |
| 353 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.StartAction <em>Start Action</em>}'. |
| 354 | * <!-- begin-user-doc --> |
| 355 | * This default implementation returns null so that we can easily ignore cases; |
| 356 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 357 | * <!-- end-user-doc --> |
| 358 | * @return the new adapter. |
| 359 | * @see de.uka.ipd.sdq.pcm.seff.StartAction |
| 360 | * @generated |
| 361 | */ |
| 362 | public Adapter createStartActionAdapter() { |
| 363 | return null; |
| 364 | } |
| 365 | |
| 366 | /** |
| 367 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.ResourceDemandingSEFF <em>Resource Demanding SEFF</em>}'. |
| 368 | * <!-- begin-user-doc --> |
| 369 | * This default implementation returns null so that we can easily ignore cases; |
| 370 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 371 | * <!-- end-user-doc --> |
| 372 | * @return the new adapter. |
| 373 | * @see de.uka.ipd.sdq.pcm.seff.ResourceDemandingSEFF |
| 374 | * @generated |
| 375 | */ |
| 376 | public Adapter createResourceDemandingSEFFAdapter() { |
| 377 | return null; |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.ResourceDemandingInternalBehaviour <em>Resource Demanding Internal Behaviour</em>}'. |
| 382 | * <!-- begin-user-doc --> |
| 383 | * This default implementation returns null so that we can easily ignore cases; |
| 384 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 385 | * <!-- end-user-doc --> |
| 386 | * @return the new adapter. |
| 387 | * @see de.uka.ipd.sdq.pcm.seff.ResourceDemandingInternalBehaviour |
| 388 | * @generated |
| 389 | */ |
| 390 | public Adapter createResourceDemandingInternalBehaviourAdapter() { |
| 391 | return null; |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.ReleaseAction <em>Release Action</em>}'. |
| 396 | * <!-- begin-user-doc --> |
| 397 | * This default implementation returns null so that we can easily ignore cases; |
| 398 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 399 | * <!-- end-user-doc --> |
| 400 | * @return the new adapter. |
| 401 | * @see de.uka.ipd.sdq.pcm.seff.ReleaseAction |
| 402 | * @generated |
| 403 | */ |
| 404 | public Adapter createReleaseActionAdapter() { |
| 405 | return null; |
| 406 | } |
| 407 | |
| 408 | /** |
| 409 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.LoopAction <em>Loop Action</em>}'. |
| 410 | * <!-- begin-user-doc --> |
| 411 | * This default implementation returns null so that we can easily ignore cases; |
| 412 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 413 | * <!-- end-user-doc --> |
| 414 | * @return the new adapter. |
| 415 | * @see de.uka.ipd.sdq.pcm.seff.LoopAction |
| 416 | * @generated |
| 417 | */ |
| 418 | public Adapter createLoopActionAdapter() { |
| 419 | return null; |
| 420 | } |
| 421 | |
| 422 | /** |
| 423 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.InternalAction <em>Internal Action</em>}'. |
| 424 | * <!-- begin-user-doc --> |
| 425 | * This default implementation returns null so that we can easily ignore cases; |
| 426 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 427 | * <!-- end-user-doc --> |
| 428 | * @return the new adapter. |
| 429 | * @see de.uka.ipd.sdq.pcm.seff.InternalAction |
| 430 | * @generated |
| 431 | */ |
| 432 | public Adapter createInternalActionAdapter() { |
| 433 | return null; |
| 434 | } |
| 435 | |
| 436 | /** |
| 437 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.ForkAction <em>Fork Action</em>}'. |
| 438 | * <!-- begin-user-doc --> |
| 439 | * This default implementation returns null so that we can easily ignore cases; |
| 440 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 441 | * <!-- end-user-doc --> |
| 442 | * @return the new adapter. |
| 443 | * @see de.uka.ipd.sdq.pcm.seff.ForkAction |
| 444 | * @generated |
| 445 | */ |
| 446 | public Adapter createForkActionAdapter() { |
| 447 | return null; |
| 448 | } |
| 449 | |
| 450 | /** |
| 451 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.ForkedBehaviour <em>Forked Behaviour</em>}'. |
| 452 | * <!-- begin-user-doc --> |
| 453 | * This default implementation returns null so that we can easily ignore cases; |
| 454 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 455 | * <!-- end-user-doc --> |
| 456 | * @return the new adapter. |
| 457 | * @see de.uka.ipd.sdq.pcm.seff.ForkedBehaviour |
| 458 | * @generated |
| 459 | */ |
| 460 | public Adapter createForkedBehaviourAdapter() { |
| 461 | return null; |
| 462 | } |
| 463 | |
| 464 | /** |
| 465 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.SynchronisationPoint <em>Synchronisation Point</em>}'. |
| 466 | * <!-- begin-user-doc --> |
| 467 | * This default implementation returns null so that we can easily ignore cases; |
| 468 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 469 | * <!-- end-user-doc --> |
| 470 | * @return the new adapter. |
| 471 | * @see de.uka.ipd.sdq.pcm.seff.SynchronisationPoint |
| 472 | * @generated |
| 473 | */ |
| 474 | public Adapter createSynchronisationPointAdapter() { |
| 475 | return null; |
| 476 | } |
| 477 | |
| 478 | /** |
| 479 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.ExternalCallAction <em>External Call Action</em>}'. |
| 480 | * <!-- begin-user-doc --> |
| 481 | * This default implementation returns null so that we can easily ignore cases; |
| 482 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 483 | * <!-- end-user-doc --> |
| 484 | * @return the new adapter. |
| 485 | * @see de.uka.ipd.sdq.pcm.seff.ExternalCallAction |
| 486 | * @generated |
| 487 | */ |
| 488 | public Adapter createExternalCallActionAdapter() { |
| 489 | return null; |
| 490 | } |
| 491 | |
| 492 | /** |
| 493 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.CallReturnAction <em>Call Return Action</em>}'. |
| 494 | * <!-- begin-user-doc --> |
| 495 | * This default implementation returns null so that we can easily ignore cases; |
| 496 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 497 | * <!-- end-user-doc --> |
| 498 | * @return the new adapter. |
| 499 | * @see de.uka.ipd.sdq.pcm.seff.CallReturnAction |
| 500 | * @generated |
| 501 | */ |
| 502 | public Adapter createCallReturnActionAdapter() { |
| 503 | return null; |
| 504 | } |
| 505 | |
| 506 | /** |
| 507 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.CallAction <em>Call Action</em>}'. |
| 508 | * <!-- begin-user-doc --> |
| 509 | * This default implementation returns null so that we can easily ignore cases; |
| 510 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 511 | * <!-- end-user-doc --> |
| 512 | * @return the new adapter. |
| 513 | * @see de.uka.ipd.sdq.pcm.seff.CallAction |
| 514 | * @generated |
| 515 | */ |
| 516 | public Adapter createCallActionAdapter() { |
| 517 | return null; |
| 518 | } |
| 519 | |
| 520 | /** |
| 521 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.seff_reliability.FailureHandlingEntity <em>Failure Handling Entity</em>}'. |
| 522 | * <!-- begin-user-doc --> |
| 523 | * This default implementation returns null so that we can easily ignore cases; |
| 524 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 525 | * <!-- end-user-doc --> |
| 526 | * @return the new adapter. |
| 527 | * @see de.uka.ipd.sdq.pcm.seff.seff_reliability.FailureHandlingEntity |
| 528 | * @generated |
| 529 | */ |
| 530 | public Adapter createFailureHandlingEntityAdapter() { |
| 531 | return null; |
| 532 | } |
| 533 | |
| 534 | /** |
| 535 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.ProbabilisticBranchTransition <em>Probabilistic Branch Transition</em>}'. |
| 536 | * <!-- begin-user-doc --> |
| 537 | * This default implementation returns null so that we can easily ignore cases; |
| 538 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 539 | * <!-- end-user-doc --> |
| 540 | * @return the new adapter. |
| 541 | * @see de.uka.ipd.sdq.pcm.seff.ProbabilisticBranchTransition |
| 542 | * @generated |
| 543 | */ |
| 544 | public Adapter createProbabilisticBranchTransitionAdapter() { |
| 545 | return null; |
| 546 | } |
| 547 | |
| 548 | /** |
| 549 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.AcquireAction <em>Acquire Action</em>}'. |
| 550 | * <!-- begin-user-doc --> |
| 551 | * This default implementation returns null so that we can easily ignore cases; |
| 552 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 553 | * <!-- end-user-doc --> |
| 554 | * @return the new adapter. |
| 555 | * @see de.uka.ipd.sdq.pcm.seff.AcquireAction |
| 556 | * @generated |
| 557 | */ |
| 558 | public Adapter createAcquireActionAdapter() { |
| 559 | return null; |
| 560 | } |
| 561 | |
| 562 | /** |
| 563 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.CollectionIteratorAction <em>Collection Iterator Action</em>}'. |
| 564 | * <!-- begin-user-doc --> |
| 565 | * This default implementation returns null so that we can easily ignore cases; |
| 566 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 567 | * <!-- end-user-doc --> |
| 568 | * @return the new adapter. |
| 569 | * @see de.uka.ipd.sdq.pcm.seff.CollectionIteratorAction |
| 570 | * @generated |
| 571 | */ |
| 572 | public Adapter createCollectionIteratorActionAdapter() { |
| 573 | return null; |
| 574 | } |
| 575 | |
| 576 | /** |
| 577 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.GuardedBranchTransition <em>Guarded Branch Transition</em>}'. |
| 578 | * <!-- begin-user-doc --> |
| 579 | * This default implementation returns null so that we can easily ignore cases; |
| 580 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 581 | * <!-- end-user-doc --> |
| 582 | * @return the new adapter. |
| 583 | * @see de.uka.ipd.sdq.pcm.seff.GuardedBranchTransition |
| 584 | * @generated |
| 585 | */ |
| 586 | public Adapter createGuardedBranchTransitionAdapter() { |
| 587 | return null; |
| 588 | } |
| 589 | |
| 590 | /** |
| 591 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.SetVariableAction <em>Set Variable Action</em>}'. |
| 592 | * <!-- begin-user-doc --> |
| 593 | * This default implementation returns null so that we can easily ignore cases; |
| 594 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 595 | * <!-- end-user-doc --> |
| 596 | * @return the new adapter. |
| 597 | * @see de.uka.ipd.sdq.pcm.seff.SetVariableAction |
| 598 | * @generated |
| 599 | */ |
| 600 | public Adapter createSetVariableActionAdapter() { |
| 601 | return null; |
| 602 | } |
| 603 | |
| 604 | /** |
| 605 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.InternalCallAction <em>Internal Call Action</em>}'. |
| 606 | * <!-- begin-user-doc --> |
| 607 | * This default implementation returns null so that we can easily ignore cases; |
| 608 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 609 | * <!-- end-user-doc --> |
| 610 | * @return the new adapter. |
| 611 | * @see de.uka.ipd.sdq.pcm.seff.InternalCallAction |
| 612 | * @generated |
| 613 | */ |
| 614 | public Adapter createInternalCallActionAdapter() { |
| 615 | return null; |
| 616 | } |
| 617 | |
| 618 | /** |
| 619 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.EmitEventAction <em>Emit Event Action</em>}'. |
| 620 | * <!-- begin-user-doc --> |
| 621 | * This default implementation returns null so that we can easily ignore cases; |
| 622 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 623 | * <!-- end-user-doc --> |
| 624 | * @return the new adapter. |
| 625 | * @see de.uka.ipd.sdq.pcm.seff.EmitEventAction |
| 626 | * @generated |
| 627 | */ |
| 628 | public Adapter createEmitEventActionAdapter() { |
| 629 | return null; |
| 630 | } |
| 631 | |
| 632 | /** |
| 633 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.seff.ServiceEffectSpecification <em>Service Effect Specification</em>}'. |
| 634 | * <!-- begin-user-doc --> |
| 635 | * This default implementation returns null so that we can easily ignore cases; |
| 636 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 637 | * <!-- end-user-doc --> |
| 638 | * @return the new adapter. |
| 639 | * @see de.uka.ipd.sdq.pcm.seff.ServiceEffectSpecification |
| 640 | * @generated |
| 641 | */ |
| 642 | public Adapter createServiceEffectSpecificationAdapter() { |
| 643 | return null; |
| 644 | } |
| 645 | |
| 646 | /** |
| 647 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.identifier.Identifier <em>Identifier</em>}'. |
| 648 | * <!-- begin-user-doc --> |
| 649 | * This default implementation returns null so that we can easily ignore cases; |
| 650 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 651 | * <!-- end-user-doc --> |
| 652 | * @return the new adapter. |
| 653 | * @see de.uka.ipd.sdq.identifier.Identifier |
| 654 | * @generated |
| 655 | */ |
| 656 | public Adapter createIdentifierAdapter() { |
| 657 | return null; |
| 658 | } |
| 659 | |
| 660 | /** |
| 661 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.core.entity.NamedElement <em>Named Element</em>}'. |
| 662 | * <!-- begin-user-doc --> |
| 663 | * This default implementation returns null so that we can easily ignore cases; |
| 664 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 665 | * <!-- end-user-doc --> |
| 666 | * @return the new adapter. |
| 667 | * @see de.uka.ipd.sdq.pcm.core.entity.NamedElement |
| 668 | * @generated |
| 669 | */ |
| 670 | public Adapter createNamedElementAdapter() { |
| 671 | return null; |
| 672 | } |
| 673 | |
| 674 | /** |
| 675 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.core.entity.Entity <em>Entity</em>}'. |
| 676 | * <!-- begin-user-doc --> |
| 677 | * This default implementation returns null so that we can easily ignore cases; |
| 678 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 679 | * <!-- end-user-doc --> |
| 680 | * @return the new adapter. |
| 681 | * @see de.uka.ipd.sdq.pcm.core.entity.Entity |
| 682 | * @generated |
| 683 | */ |
| 684 | public Adapter createEntityAdapter() { |
| 685 | return null; |
| 686 | } |
| 687 | |
| 688 | /** |
| 689 | * Creates a new adapter for the default case. |
| 690 | * <!-- begin-user-doc --> |
| 691 | * This default implementation returns null. |
| 692 | * <!-- end-user-doc --> |
| 693 | * @return the new adapter. |
| 694 | * @generated |
| 695 | */ |
| 696 | public Adapter createEObjectAdapter() { |
| 697 | return null; |
| 698 | } |
| 699 | |
| 700 | } //SeffAdapterFactory |