| 1 | /** |
| 2 | * <copyright> |
| 3 | * </copyright> |
| 4 | * |
| 5 | * $Id$ |
| 6 | */ |
| 7 | package de.uka.ipd.sdq.sensitivity.util; |
| 8 | |
| 9 | import de.uka.ipd.sdq.identifier.Identifier; |
| 10 | |
| 11 | import de.uka.ipd.sdq.pcm.core.entity.Entity; |
| 12 | import de.uka.ipd.sdq.pcm.core.entity.NamedElement; |
| 13 | |
| 14 | import de.uka.ipd.sdq.sensitivity.*; |
| 15 | |
| 16 | import org.eclipse.emf.common.notify.Adapter; |
| 17 | import org.eclipse.emf.common.notify.Notifier; |
| 18 | |
| 19 | import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; |
| 20 | |
| 21 | import org.eclipse.emf.ecore.EObject; |
| 22 | |
| 23 | /** |
| 24 | * <!-- begin-user-doc --> |
| 25 | * The <b>Adapter Factory</b> for the model. |
| 26 | * It provides an adapter <code>createXXX</code> method for each class of the model. |
| 27 | * <!-- end-user-doc --> |
| 28 | * @see de.uka.ipd.sdq.sensitivity.SensitivityPackage |
| 29 | * @generated |
| 30 | */ |
| 31 | public class SensitivityAdapterFactory extends AdapterFactoryImpl { |
| 32 | /** |
| 33 | * The cached model package. |
| 34 | * <!-- begin-user-doc --> |
| 35 | * <!-- end-user-doc --> |
| 36 | * @generated |
| 37 | */ |
| 38 | protected static SensitivityPackage modelPackage; |
| 39 | |
| 40 | /** |
| 41 | * Creates an instance of the adapter factory. |
| 42 | * <!-- begin-user-doc --> |
| 43 | * <!-- end-user-doc --> |
| 44 | * @generated |
| 45 | */ |
| 46 | public SensitivityAdapterFactory() { |
| 47 | if (modelPackage == null) { |
| 48 | modelPackage = SensitivityPackage.eINSTANCE; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Returns whether this factory is applicable for the type of the object. |
| 54 | * <!-- begin-user-doc --> |
| 55 | * This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model. |
| 56 | * <!-- end-user-doc --> |
| 57 | * @return whether this factory is applicable for the type of the object. |
| 58 | * @generated |
| 59 | */ |
| 60 | @Override |
| 61 | public boolean isFactoryForType(Object object) { |
| 62 | if (object == modelPackage) { |
| 63 | return true; |
| 64 | } |
| 65 | if (object instanceof EObject) { |
| 66 | return ((EObject)object).eClass().getEPackage() == modelPackage; |
| 67 | } |
| 68 | return false; |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * The switch that delegates to the <code>createXXX</code> methods. |
| 73 | * <!-- begin-user-doc --> |
| 74 | * <!-- end-user-doc --> |
| 75 | * @generated |
| 76 | */ |
| 77 | protected SensitivitySwitch<Adapter> modelSwitch = |
| 78 | new SensitivitySwitch<Adapter>() { |
| 79 | @Override |
| 80 | public Adapter caseSensitivityConfiguration(SensitivityConfiguration object) { |
| 81 | return createSensitivityConfigurationAdapter(); |
| 82 | } |
| 83 | @Override |
| 84 | public Adapter caseSensitivityParameter(SensitivityParameter object) { |
| 85 | return createSensitivityParameterAdapter(); |
| 86 | } |
| 87 | @Override |
| 88 | public Adapter caseCombinedSensitivityParameter(CombinedSensitivityParameter object) { |
| 89 | return createCombinedSensitivityParameterAdapter(); |
| 90 | } |
| 91 | @Override |
| 92 | public Adapter caseSensitivityResultSpecification(SensitivityResultSpecification object) { |
| 93 | return createSensitivityResultSpecificationAdapter(); |
| 94 | } |
| 95 | @Override |
| 96 | public Adapter caseSingleSensitivityParameter(SingleSensitivityParameter object) { |
| 97 | return createSingleSensitivityParameterAdapter(); |
| 98 | } |
| 99 | @Override |
| 100 | public Adapter caseSensitivityParameterVariation(SensitivityParameterVariation object) { |
| 101 | return createSensitivityParameterVariationAdapter(); |
| 102 | } |
| 103 | @Override |
| 104 | public Adapter caseComponentReliabilityParameter(ComponentReliabilityParameter object) { |
| 105 | return createComponentReliabilityParameterAdapter(); |
| 106 | } |
| 107 | @Override |
| 108 | public Adapter caseDoubleParameterVariation(DoubleParameterVariation object) { |
| 109 | return createDoubleParameterVariationAdapter(); |
| 110 | } |
| 111 | @Override |
| 112 | public Adapter caseStringParameterSequence(StringParameterSequence object) { |
| 113 | return createStringParameterSequenceAdapter(); |
| 114 | } |
| 115 | @Override |
| 116 | public Adapter caseDoubleParameterRange(DoubleParameterRange object) { |
| 117 | return createDoubleParameterRangeAdapter(); |
| 118 | } |
| 119 | @Override |
| 120 | public Adapter caseDoubleParameterSequence(DoubleParameterSequence object) { |
| 121 | return createDoubleParameterSequenceAdapter(); |
| 122 | } |
| 123 | @Override |
| 124 | public Adapter caseDoubleParameterFunction(DoubleParameterFunction object) { |
| 125 | return createDoubleParameterFunctionAdapter(); |
| 126 | } |
| 127 | @Override |
| 128 | public Adapter caseInternalActionReliabilityParameter(InternalActionReliabilityParameter object) { |
| 129 | return createInternalActionReliabilityParameterAdapter(); |
| 130 | } |
| 131 | @Override |
| 132 | public Adapter caseProbabilisticBranchParameter(ProbabilisticBranchParameter object) { |
| 133 | return createProbabilisticBranchParameterAdapter(); |
| 134 | } |
| 135 | @Override |
| 136 | public Adapter caseHardwareMTTFParameter(HardwareMTTFParameter object) { |
| 137 | return createHardwareMTTFParameterAdapter(); |
| 138 | } |
| 139 | @Override |
| 140 | public Adapter caseHardwareMTTRParameter(HardwareMTTRParameter object) { |
| 141 | return createHardwareMTTRParameterAdapter(); |
| 142 | } |
| 143 | @Override |
| 144 | public Adapter caseResourceMTTFParameter(ResourceMTTFParameter object) { |
| 145 | return createResourceMTTFParameterAdapter(); |
| 146 | } |
| 147 | @Override |
| 148 | public Adapter caseResourceMTTRParameter(ResourceMTTRParameter object) { |
| 149 | return createResourceMTTRParameterAdapter(); |
| 150 | } |
| 151 | @Override |
| 152 | public Adapter caseNetworkReliabilityParameter(NetworkReliabilityParameter object) { |
| 153 | return createNetworkReliabilityParameterAdapter(); |
| 154 | } |
| 155 | @Override |
| 156 | public Adapter caseCommunicationLinkReliabilityParameter(CommunicationLinkReliabilityParameter object) { |
| 157 | return createCommunicationLinkReliabilityParameterAdapter(); |
| 158 | } |
| 159 | @Override |
| 160 | public Adapter caseSoftwareReliabilityParameter(SoftwareReliabilityParameter object) { |
| 161 | return createSoftwareReliabilityParameterAdapter(); |
| 162 | } |
| 163 | @Override |
| 164 | public Adapter caseVariableUsageParameter(VariableUsageParameter object) { |
| 165 | return createVariableUsageParameterAdapter(); |
| 166 | } |
| 167 | @Override |
| 168 | public Adapter caseUsageBranchParameter(UsageBranchParameter object) { |
| 169 | return createUsageBranchParameterAdapter(); |
| 170 | } |
| 171 | @Override |
| 172 | public Adapter caseDoubleOffsetSequence(DoubleOffsetSequence object) { |
| 173 | return createDoubleOffsetSequenceAdapter(); |
| 174 | } |
| 175 | @Override |
| 176 | public Adapter caseSoftwareFailureTypesParameter(SoftwareFailureTypesParameter object) { |
| 177 | return createSoftwareFailureTypesParameterAdapter(); |
| 178 | } |
| 179 | @Override |
| 180 | public Adapter caseFailureTypeResultSpecification(FailureTypeResultSpecification object) { |
| 181 | return createFailureTypeResultSpecificationAdapter(); |
| 182 | } |
| 183 | @Override |
| 184 | public Adapter caseFailureDimensionResultSpecification(FailureDimensionResultSpecification object) { |
| 185 | return createFailureDimensionResultSpecificationAdapter(); |
| 186 | } |
| 187 | @Override |
| 188 | public Adapter caseIdentifier(Identifier object) { |
| 189 | return createIdentifierAdapter(); |
| 190 | } |
| 191 | @Override |
| 192 | public Adapter caseNamedElement(NamedElement object) { |
| 193 | return createNamedElementAdapter(); |
| 194 | } |
| 195 | @Override |
| 196 | public Adapter caseEntity(Entity object) { |
| 197 | return createEntityAdapter(); |
| 198 | } |
| 199 | @Override |
| 200 | public Adapter defaultCase(EObject object) { |
| 201 | return createEObjectAdapter(); |
| 202 | } |
| 203 | }; |
| 204 | |
| 205 | /** |
| 206 | * Creates an adapter for the <code>target</code>. |
| 207 | * <!-- begin-user-doc --> |
| 208 | * <!-- end-user-doc --> |
| 209 | * @param target the object to adapt. |
| 210 | * @return the adapter for the <code>target</code>. |
| 211 | * @generated |
| 212 | */ |
| 213 | @Override |
| 214 | public Adapter createAdapter(Notifier target) { |
| 215 | return modelSwitch.doSwitch((EObject)target); |
| 216 | } |
| 217 | |
| 218 | |
| 219 | /** |
| 220 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.SensitivityConfiguration <em>Configuration</em>}'. |
| 221 | * <!-- begin-user-doc --> |
| 222 | * This default implementation returns null so that we can easily ignore cases; |
| 223 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 224 | * <!-- end-user-doc --> |
| 225 | * @return the new adapter. |
| 226 | * @see de.uka.ipd.sdq.sensitivity.SensitivityConfiguration |
| 227 | * @generated |
| 228 | */ |
| 229 | public Adapter createSensitivityConfigurationAdapter() { |
| 230 | return null; |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.SensitivityParameter <em>Parameter</em>}'. |
| 235 | * <!-- begin-user-doc --> |
| 236 | * This default implementation returns null so that we can easily ignore cases; |
| 237 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 238 | * <!-- end-user-doc --> |
| 239 | * @return the new adapter. |
| 240 | * @see de.uka.ipd.sdq.sensitivity.SensitivityParameter |
| 241 | * @generated |
| 242 | */ |
| 243 | public Adapter createSensitivityParameterAdapter() { |
| 244 | return null; |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.CombinedSensitivityParameter <em>Combined Sensitivity Parameter</em>}'. |
| 249 | * <!-- begin-user-doc --> |
| 250 | * This default implementation returns null so that we can easily ignore cases; |
| 251 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 252 | * <!-- end-user-doc --> |
| 253 | * @return the new adapter. |
| 254 | * @see de.uka.ipd.sdq.sensitivity.CombinedSensitivityParameter |
| 255 | * @generated |
| 256 | */ |
| 257 | public Adapter createCombinedSensitivityParameterAdapter() { |
| 258 | return null; |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.SensitivityResultSpecification <em>Result Specification</em>}'. |
| 263 | * <!-- begin-user-doc --> |
| 264 | * This default implementation returns null so that we can easily ignore cases; |
| 265 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 266 | * <!-- end-user-doc --> |
| 267 | * @return the new adapter. |
| 268 | * @see de.uka.ipd.sdq.sensitivity.SensitivityResultSpecification |
| 269 | * @generated |
| 270 | */ |
| 271 | public Adapter createSensitivityResultSpecificationAdapter() { |
| 272 | return null; |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.SingleSensitivityParameter <em>Single Sensitivity Parameter</em>}'. |
| 277 | * <!-- begin-user-doc --> |
| 278 | * This default implementation returns null so that we can easily ignore cases; |
| 279 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 280 | * <!-- end-user-doc --> |
| 281 | * @return the new adapter. |
| 282 | * @see de.uka.ipd.sdq.sensitivity.SingleSensitivityParameter |
| 283 | * @generated |
| 284 | */ |
| 285 | public Adapter createSingleSensitivityParameterAdapter() { |
| 286 | return null; |
| 287 | } |
| 288 | |
| 289 | /** |
| 290 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.SensitivityParameterVariation <em>Parameter Variation</em>}'. |
| 291 | * <!-- begin-user-doc --> |
| 292 | * This default implementation returns null so that we can easily ignore cases; |
| 293 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 294 | * <!-- end-user-doc --> |
| 295 | * @return the new adapter. |
| 296 | * @see de.uka.ipd.sdq.sensitivity.SensitivityParameterVariation |
| 297 | * @generated |
| 298 | */ |
| 299 | public Adapter createSensitivityParameterVariationAdapter() { |
| 300 | return null; |
| 301 | } |
| 302 | |
| 303 | /** |
| 304 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.ComponentReliabilityParameter <em>Component Reliability Parameter</em>}'. |
| 305 | * <!-- begin-user-doc --> |
| 306 | * This default implementation returns null so that we can easily ignore cases; |
| 307 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 308 | * <!-- end-user-doc --> |
| 309 | * @return the new adapter. |
| 310 | * @see de.uka.ipd.sdq.sensitivity.ComponentReliabilityParameter |
| 311 | * @generated |
| 312 | */ |
| 313 | public Adapter createComponentReliabilityParameterAdapter() { |
| 314 | return null; |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.DoubleParameterVariation <em>Double Parameter Variation</em>}'. |
| 319 | * <!-- begin-user-doc --> |
| 320 | * This default implementation returns null so that we can easily ignore cases; |
| 321 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 322 | * <!-- end-user-doc --> |
| 323 | * @return the new adapter. |
| 324 | * @see de.uka.ipd.sdq.sensitivity.DoubleParameterVariation |
| 325 | * @generated |
| 326 | */ |
| 327 | public Adapter createDoubleParameterVariationAdapter() { |
| 328 | return null; |
| 329 | } |
| 330 | |
| 331 | /** |
| 332 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.StringParameterSequence <em>String Parameter Sequence</em>}'. |
| 333 | * <!-- begin-user-doc --> |
| 334 | * This default implementation returns null so that we can easily ignore cases; |
| 335 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 336 | * <!-- end-user-doc --> |
| 337 | * @return the new adapter. |
| 338 | * @see de.uka.ipd.sdq.sensitivity.StringParameterSequence |
| 339 | * @generated |
| 340 | */ |
| 341 | public Adapter createStringParameterSequenceAdapter() { |
| 342 | return null; |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.DoubleParameterRange <em>Double Parameter Range</em>}'. |
| 347 | * <!-- begin-user-doc --> |
| 348 | * This default implementation returns null so that we can easily ignore cases; |
| 349 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 350 | * <!-- end-user-doc --> |
| 351 | * @return the new adapter. |
| 352 | * @see de.uka.ipd.sdq.sensitivity.DoubleParameterRange |
| 353 | * @generated |
| 354 | */ |
| 355 | public Adapter createDoubleParameterRangeAdapter() { |
| 356 | return null; |
| 357 | } |
| 358 | |
| 359 | /** |
| 360 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.DoubleParameterSequence <em>Double Parameter Sequence</em>}'. |
| 361 | * <!-- begin-user-doc --> |
| 362 | * This default implementation returns null so that we can easily ignore cases; |
| 363 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 364 | * <!-- end-user-doc --> |
| 365 | * @return the new adapter. |
| 366 | * @see de.uka.ipd.sdq.sensitivity.DoubleParameterSequence |
| 367 | * @generated |
| 368 | */ |
| 369 | public Adapter createDoubleParameterSequenceAdapter() { |
| 370 | return null; |
| 371 | } |
| 372 | |
| 373 | /** |
| 374 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.DoubleParameterFunction <em>Double Parameter Function</em>}'. |
| 375 | * <!-- begin-user-doc --> |
| 376 | * This default implementation returns null so that we can easily ignore cases; |
| 377 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 378 | * <!-- end-user-doc --> |
| 379 | * @return the new adapter. |
| 380 | * @see de.uka.ipd.sdq.sensitivity.DoubleParameterFunction |
| 381 | * @generated |
| 382 | */ |
| 383 | public Adapter createDoubleParameterFunctionAdapter() { |
| 384 | return null; |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.InternalActionReliabilityParameter <em>Internal Action Reliability Parameter</em>}'. |
| 389 | * <!-- begin-user-doc --> |
| 390 | * This default implementation returns null so that we can easily ignore cases; |
| 391 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 392 | * <!-- end-user-doc --> |
| 393 | * @return the new adapter. |
| 394 | * @see de.uka.ipd.sdq.sensitivity.InternalActionReliabilityParameter |
| 395 | * @generated |
| 396 | */ |
| 397 | public Adapter createInternalActionReliabilityParameterAdapter() { |
| 398 | return null; |
| 399 | } |
| 400 | |
| 401 | /** |
| 402 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.ProbabilisticBranchParameter <em>Probabilistic Branch Parameter</em>}'. |
| 403 | * <!-- begin-user-doc --> |
| 404 | * This default implementation returns null so that we can easily ignore cases; |
| 405 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 406 | * <!-- end-user-doc --> |
| 407 | * @return the new adapter. |
| 408 | * @see de.uka.ipd.sdq.sensitivity.ProbabilisticBranchParameter |
| 409 | * @generated |
| 410 | */ |
| 411 | public Adapter createProbabilisticBranchParameterAdapter() { |
| 412 | return null; |
| 413 | } |
| 414 | |
| 415 | /** |
| 416 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.HardwareMTTFParameter <em>Hardware MTTF Parameter</em>}'. |
| 417 | * <!-- begin-user-doc --> |
| 418 | * This default implementation returns null so that we can easily ignore cases; |
| 419 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 420 | * <!-- end-user-doc --> |
| 421 | * @return the new adapter. |
| 422 | * @see de.uka.ipd.sdq.sensitivity.HardwareMTTFParameter |
| 423 | * @generated |
| 424 | */ |
| 425 | public Adapter createHardwareMTTFParameterAdapter() { |
| 426 | return null; |
| 427 | } |
| 428 | |
| 429 | /** |
| 430 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.HardwareMTTRParameter <em>Hardware MTTR Parameter</em>}'. |
| 431 | * <!-- begin-user-doc --> |
| 432 | * This default implementation returns null so that we can easily ignore cases; |
| 433 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 434 | * <!-- end-user-doc --> |
| 435 | * @return the new adapter. |
| 436 | * @see de.uka.ipd.sdq.sensitivity.HardwareMTTRParameter |
| 437 | * @generated |
| 438 | */ |
| 439 | public Adapter createHardwareMTTRParameterAdapter() { |
| 440 | return null; |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.ResourceMTTFParameter <em>Resource MTTF Parameter</em>}'. |
| 445 | * <!-- begin-user-doc --> |
| 446 | * This default implementation returns null so that we can easily ignore cases; |
| 447 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 448 | * <!-- end-user-doc --> |
| 449 | * @return the new adapter. |
| 450 | * @see de.uka.ipd.sdq.sensitivity.ResourceMTTFParameter |
| 451 | * @generated |
| 452 | */ |
| 453 | public Adapter createResourceMTTFParameterAdapter() { |
| 454 | return null; |
| 455 | } |
| 456 | |
| 457 | /** |
| 458 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.ResourceMTTRParameter <em>Resource MTTR Parameter</em>}'. |
| 459 | * <!-- begin-user-doc --> |
| 460 | * This default implementation returns null so that we can easily ignore cases; |
| 461 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 462 | * <!-- end-user-doc --> |
| 463 | * @return the new adapter. |
| 464 | * @see de.uka.ipd.sdq.sensitivity.ResourceMTTRParameter |
| 465 | * @generated |
| 466 | */ |
| 467 | public Adapter createResourceMTTRParameterAdapter() { |
| 468 | return null; |
| 469 | } |
| 470 | |
| 471 | /** |
| 472 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.NetworkReliabilityParameter <em>Network Reliability Parameter</em>}'. |
| 473 | * <!-- begin-user-doc --> |
| 474 | * This default implementation returns null so that we can easily ignore cases; |
| 475 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 476 | * <!-- end-user-doc --> |
| 477 | * @return the new adapter. |
| 478 | * @see de.uka.ipd.sdq.sensitivity.NetworkReliabilityParameter |
| 479 | * @generated |
| 480 | */ |
| 481 | public Adapter createNetworkReliabilityParameterAdapter() { |
| 482 | return null; |
| 483 | } |
| 484 | |
| 485 | /** |
| 486 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.CommunicationLinkReliabilityParameter <em>Communication Link Reliability Parameter</em>}'. |
| 487 | * <!-- begin-user-doc --> |
| 488 | * This default implementation returns null so that we can easily ignore cases; |
| 489 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 490 | * <!-- end-user-doc --> |
| 491 | * @return the new adapter. |
| 492 | * @see de.uka.ipd.sdq.sensitivity.CommunicationLinkReliabilityParameter |
| 493 | * @generated |
| 494 | */ |
| 495 | public Adapter createCommunicationLinkReliabilityParameterAdapter() { |
| 496 | return null; |
| 497 | } |
| 498 | |
| 499 | /** |
| 500 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.SoftwareReliabilityParameter <em>Software Reliability Parameter</em>}'. |
| 501 | * <!-- begin-user-doc --> |
| 502 | * This default implementation returns null so that we can easily ignore cases; |
| 503 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 504 | * <!-- end-user-doc --> |
| 505 | * @return the new adapter. |
| 506 | * @see de.uka.ipd.sdq.sensitivity.SoftwareReliabilityParameter |
| 507 | * @generated |
| 508 | */ |
| 509 | public Adapter createSoftwareReliabilityParameterAdapter() { |
| 510 | return null; |
| 511 | } |
| 512 | |
| 513 | /** |
| 514 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.VariableUsageParameter <em>Variable Usage Parameter</em>}'. |
| 515 | * <!-- begin-user-doc --> |
| 516 | * This default implementation returns null so that we can easily ignore cases; |
| 517 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 518 | * <!-- end-user-doc --> |
| 519 | * @return the new adapter. |
| 520 | * @see de.uka.ipd.sdq.sensitivity.VariableUsageParameter |
| 521 | * @generated |
| 522 | */ |
| 523 | public Adapter createVariableUsageParameterAdapter() { |
| 524 | return null; |
| 525 | } |
| 526 | |
| 527 | /** |
| 528 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.UsageBranchParameter <em>Usage Branch Parameter</em>}'. |
| 529 | * <!-- begin-user-doc --> |
| 530 | * This default implementation returns null so that we can easily ignore cases; |
| 531 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 532 | * <!-- end-user-doc --> |
| 533 | * @return the new adapter. |
| 534 | * @see de.uka.ipd.sdq.sensitivity.UsageBranchParameter |
| 535 | * @generated |
| 536 | */ |
| 537 | public Adapter createUsageBranchParameterAdapter() { |
| 538 | return null; |
| 539 | } |
| 540 | |
| 541 | /** |
| 542 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.DoubleOffsetSequence <em>Double Offset Sequence</em>}'. |
| 543 | * <!-- begin-user-doc --> |
| 544 | * This default implementation returns null so that we can easily ignore cases; |
| 545 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 546 | * <!-- end-user-doc --> |
| 547 | * @return the new adapter. |
| 548 | * @see de.uka.ipd.sdq.sensitivity.DoubleOffsetSequence |
| 549 | * @generated |
| 550 | */ |
| 551 | public Adapter createDoubleOffsetSequenceAdapter() { |
| 552 | return null; |
| 553 | } |
| 554 | |
| 555 | /** |
| 556 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.SoftwareFailureTypesParameter <em>Software Failure Types Parameter</em>}'. |
| 557 | * <!-- begin-user-doc --> |
| 558 | * This default implementation returns null so that we can easily ignore cases; |
| 559 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 560 | * <!-- end-user-doc --> |
| 561 | * @return the new adapter. |
| 562 | * @see de.uka.ipd.sdq.sensitivity.SoftwareFailureTypesParameter |
| 563 | * @generated |
| 564 | */ |
| 565 | public Adapter createSoftwareFailureTypesParameterAdapter() { |
| 566 | return null; |
| 567 | } |
| 568 | |
| 569 | /** |
| 570 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.FailureTypeResultSpecification <em>Failure Type Result Specification</em>}'. |
| 571 | * <!-- begin-user-doc --> |
| 572 | * This default implementation returns null so that we can easily ignore cases; |
| 573 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 574 | * <!-- end-user-doc --> |
| 575 | * @return the new adapter. |
| 576 | * @see de.uka.ipd.sdq.sensitivity.FailureTypeResultSpecification |
| 577 | * @generated |
| 578 | */ |
| 579 | public Adapter createFailureTypeResultSpecificationAdapter() { |
| 580 | return null; |
| 581 | } |
| 582 | |
| 583 | /** |
| 584 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.sensitivity.FailureDimensionResultSpecification <em>Failure Dimension Result Specification</em>}'. |
| 585 | * <!-- begin-user-doc --> |
| 586 | * This default implementation returns null so that we can easily ignore cases; |
| 587 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 588 | * <!-- end-user-doc --> |
| 589 | * @return the new adapter. |
| 590 | * @see de.uka.ipd.sdq.sensitivity.FailureDimensionResultSpecification |
| 591 | * @generated |
| 592 | */ |
| 593 | public Adapter createFailureDimensionResultSpecificationAdapter() { |
| 594 | return null; |
| 595 | } |
| 596 | |
| 597 | /** |
| 598 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.identifier.Identifier <em>Identifier</em>}'. |
| 599 | * <!-- begin-user-doc --> |
| 600 | * This default implementation returns null so that we can easily ignore cases; |
| 601 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 602 | * <!-- end-user-doc --> |
| 603 | * @return the new adapter. |
| 604 | * @see de.uka.ipd.sdq.identifier.Identifier |
| 605 | * @generated |
| 606 | */ |
| 607 | public Adapter createIdentifierAdapter() { |
| 608 | return null; |
| 609 | } |
| 610 | |
| 611 | /** |
| 612 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.core.entity.NamedElement <em>Named Element</em>}'. |
| 613 | * <!-- begin-user-doc --> |
| 614 | * This default implementation returns null so that we can easily ignore cases; |
| 615 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 616 | * <!-- end-user-doc --> |
| 617 | * @return the new adapter. |
| 618 | * @see de.uka.ipd.sdq.pcm.core.entity.NamedElement |
| 619 | * @generated |
| 620 | */ |
| 621 | public Adapter createNamedElementAdapter() { |
| 622 | return null; |
| 623 | } |
| 624 | |
| 625 | /** |
| 626 | * Creates a new adapter for an object of class '{@link de.uka.ipd.sdq.pcm.core.entity.Entity <em>Entity</em>}'. |
| 627 | * <!-- begin-user-doc --> |
| 628 | * This default implementation returns null so that we can easily ignore cases; |
| 629 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 630 | * <!-- end-user-doc --> |
| 631 | * @return the new adapter. |
| 632 | * @see de.uka.ipd.sdq.pcm.core.entity.Entity |
| 633 | * @generated |
| 634 | */ |
| 635 | public Adapter createEntityAdapter() { |
| 636 | return null; |
| 637 | } |
| 638 | |
| 639 | /** |
| 640 | * Creates a new adapter for the default case. |
| 641 | * <!-- begin-user-doc --> |
| 642 | * This default implementation returns null. |
| 643 | * <!-- end-user-doc --> |
| 644 | * @return the new adapter. |
| 645 | * @generated |
| 646 | */ |
| 647 | public Adapter createEObjectAdapter() { |
| 648 | return null; |
| 649 | } |
| 650 | |
| 651 | } //SensitivityAdapterFactory |