| 1 | /** |
| 2 | * <copyright> |
| 3 | * </copyright> |
| 4 | * |
| 5 | * $Id$ |
| 6 | */ |
| 7 | package LqnCore.util; |
| 8 | |
| 9 | import LqnCore.*; |
| 10 | |
| 11 | import org.eclipse.emf.common.notify.Adapter; |
| 12 | import org.eclipse.emf.common.notify.Notifier; |
| 13 | |
| 14 | import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; |
| 15 | |
| 16 | import org.eclipse.emf.ecore.EObject; |
| 17 | |
| 18 | /** |
| 19 | * <!-- begin-user-doc --> |
| 20 | * The <b>Adapter Factory</b> for the model. |
| 21 | * It provides an adapter <code>createXXX</code> method for each class of the model. |
| 22 | * <!-- end-user-doc --> |
| 23 | * @see LqnCore.LqnCorePackage |
| 24 | * @generated |
| 25 | */ |
| 26 | public class LqnCoreAdapterFactory extends AdapterFactoryImpl { |
| 27 | /** |
| 28 | * The cached model package. |
| 29 | * <!-- begin-user-doc --> |
| 30 | * <!-- end-user-doc --> |
| 31 | * @generated |
| 32 | */ |
| 33 | protected static LqnCorePackage modelPackage; |
| 34 | |
| 35 | /** |
| 36 | * Creates an instance of the adapter factory. |
| 37 | * <!-- begin-user-doc --> |
| 38 | * <!-- end-user-doc --> |
| 39 | * @generated |
| 40 | */ |
| 41 | public LqnCoreAdapterFactory() { |
| 42 | if (modelPackage == null) { |
| 43 | modelPackage = LqnCorePackage.eINSTANCE; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Returns whether this factory is applicable for the type of the object. |
| 49 | * <!-- begin-user-doc --> |
| 50 | * This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model. |
| 51 | * <!-- end-user-doc --> |
| 52 | * @return whether this factory is applicable for the type of the object. |
| 53 | * @generated |
| 54 | */ |
| 55 | @Override |
| 56 | public boolean isFactoryForType(Object object) { |
| 57 | if (object == modelPackage) { |
| 58 | return true; |
| 59 | } |
| 60 | if (object instanceof EObject) { |
| 61 | return ((EObject)object).eClass().getEPackage() == modelPackage; |
| 62 | } |
| 63 | return false; |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * The switch the delegates to the <code>createXXX</code> methods. |
| 68 | * <!-- begin-user-doc --> |
| 69 | * <!-- end-user-doc --> |
| 70 | * @generated |
| 71 | */ |
| 72 | protected LqnCoreSwitch<Adapter> modelSwitch = |
| 73 | new LqnCoreSwitch<Adapter>() { |
| 74 | @Override |
| 75 | public Adapter caseActivityDefBase(ActivityDefBase object) { |
| 76 | return createActivityDefBaseAdapter(); |
| 77 | } |
| 78 | @Override |
| 79 | public Adapter caseActivityDefType(ActivityDefType object) { |
| 80 | return createActivityDefTypeAdapter(); |
| 81 | } |
| 82 | @Override |
| 83 | public Adapter caseActivityGraphBase(ActivityGraphBase object) { |
| 84 | return createActivityGraphBaseAdapter(); |
| 85 | } |
| 86 | @Override |
| 87 | public Adapter caseActivityListType(ActivityListType object) { |
| 88 | return createActivityListTypeAdapter(); |
| 89 | } |
| 90 | @Override |
| 91 | public Adapter caseActivityLoopListType(ActivityLoopListType object) { |
| 92 | return createActivityLoopListTypeAdapter(); |
| 93 | } |
| 94 | @Override |
| 95 | public Adapter caseActivityLoopType(ActivityLoopType object) { |
| 96 | return createActivityLoopTypeAdapter(); |
| 97 | } |
| 98 | @Override |
| 99 | public Adapter caseActivityMakingCallType(ActivityMakingCallType object) { |
| 100 | return createActivityMakingCallTypeAdapter(); |
| 101 | } |
| 102 | @Override |
| 103 | public Adapter caseActivityOrType(ActivityOrType object) { |
| 104 | return createActivityOrTypeAdapter(); |
| 105 | } |
| 106 | @Override |
| 107 | public Adapter caseActivityPhasesType(ActivityPhasesType object) { |
| 108 | return createActivityPhasesTypeAdapter(); |
| 109 | } |
| 110 | @Override |
| 111 | public Adapter caseActivityType(ActivityType object) { |
| 112 | return createActivityTypeAdapter(); |
| 113 | } |
| 114 | @Override |
| 115 | public Adapter caseAndJoinListType(AndJoinListType object) { |
| 116 | return createAndJoinListTypeAdapter(); |
| 117 | } |
| 118 | @Override |
| 119 | public Adapter caseAsynchCallType(AsynchCallType object) { |
| 120 | return createAsynchCallTypeAdapter(); |
| 121 | } |
| 122 | @Override |
| 123 | public Adapter caseBindType(BindType object) { |
| 124 | return createBindTypeAdapter(); |
| 125 | } |
| 126 | @Override |
| 127 | public Adapter caseCallListType(CallListType object) { |
| 128 | return createCallListTypeAdapter(); |
| 129 | } |
| 130 | @Override |
| 131 | public Adapter caseDocumentRoot(DocumentRoot object) { |
| 132 | return createDocumentRootAdapter(); |
| 133 | } |
| 134 | @Override |
| 135 | public Adapter caseEntryActivityDefType(EntryActivityDefType object) { |
| 136 | return createEntryActivityDefTypeAdapter(); |
| 137 | } |
| 138 | @Override |
| 139 | public Adapter caseEntryActivityGraph(EntryActivityGraph object) { |
| 140 | return createEntryActivityGraphAdapter(); |
| 141 | } |
| 142 | @Override |
| 143 | public Adapter caseEntryMakingCallType(EntryMakingCallType object) { |
| 144 | return createEntryMakingCallTypeAdapter(); |
| 145 | } |
| 146 | @Override |
| 147 | public Adapter caseEntryType(EntryType object) { |
| 148 | return createEntryTypeAdapter(); |
| 149 | } |
| 150 | @Override |
| 151 | public Adapter caseFirstPlotType(FirstPlotType object) { |
| 152 | return createFirstPlotTypeAdapter(); |
| 153 | } |
| 154 | @Override |
| 155 | public Adapter caseHistogramBinType(HistogramBinType object) { |
| 156 | return createHistogramBinTypeAdapter(); |
| 157 | } |
| 158 | @Override |
| 159 | public Adapter caseInPortType(InPortType object) { |
| 160 | return createInPortTypeAdapter(); |
| 161 | } |
| 162 | @Override |
| 163 | public Adapter caseInterfaceType(InterfaceType object) { |
| 164 | return createInterfaceTypeAdapter(); |
| 165 | } |
| 166 | @Override |
| 167 | public Adapter caseLqnCoreType(LqnCoreType object) { |
| 168 | return createLqnCoreTypeAdapter(); |
| 169 | } |
| 170 | @Override |
| 171 | public Adapter caseLqnModelType(LqnModelType object) { |
| 172 | return createLqnModelTypeAdapter(); |
| 173 | } |
| 174 | @Override |
| 175 | public Adapter caseMakingCallType(MakingCallType object) { |
| 176 | return createMakingCallTypeAdapter(); |
| 177 | } |
| 178 | @Override |
| 179 | public Adapter caseOrListType(OrListType object) { |
| 180 | return createOrListTypeAdapter(); |
| 181 | } |
| 182 | @Override |
| 183 | public Adapter caseOutPortType(OutPortType object) { |
| 184 | return createOutPortTypeAdapter(); |
| 185 | } |
| 186 | @Override |
| 187 | public Adapter caseOutputDistributionType(OutputDistributionType object) { |
| 188 | return createOutputDistributionTypeAdapter(); |
| 189 | } |
| 190 | @Override |
| 191 | public Adapter caseOutputEntryDistributionType(OutputEntryDistributionType object) { |
| 192 | return createOutputEntryDistributionTypeAdapter(); |
| 193 | } |
| 194 | @Override |
| 195 | public Adapter caseOutputResultForwardingANDJoinDelay(OutputResultForwardingANDJoinDelay object) { |
| 196 | return createOutputResultForwardingANDJoinDelayAdapter(); |
| 197 | } |
| 198 | @Override |
| 199 | public Adapter caseOutputResultType(OutputResultType object) { |
| 200 | return createOutputResultTypeAdapter(); |
| 201 | } |
| 202 | @Override |
| 203 | public Adapter caseParameterType(ParameterType object) { |
| 204 | return createParameterTypeAdapter(); |
| 205 | } |
| 206 | @Override |
| 207 | public Adapter caseParaType(ParaType object) { |
| 208 | return createParaTypeAdapter(); |
| 209 | } |
| 210 | @Override |
| 211 | public Adapter casePhaseActivities(PhaseActivities object) { |
| 212 | return createPhaseActivitiesAdapter(); |
| 213 | } |
| 214 | @Override |
| 215 | public Adapter casePlotControlType(PlotControlType object) { |
| 216 | return createPlotControlTypeAdapter(); |
| 217 | } |
| 218 | @Override |
| 219 | public Adapter casePlotType(PlotType object) { |
| 220 | return createPlotTypeAdapter(); |
| 221 | } |
| 222 | @Override |
| 223 | public Adapter casePortBindingType(PortBindingType object) { |
| 224 | return createPortBindingTypeAdapter(); |
| 225 | } |
| 226 | @Override |
| 227 | public Adapter casePragmaType(PragmaType object) { |
| 228 | return createPragmaTypeAdapter(); |
| 229 | } |
| 230 | @Override |
| 231 | public Adapter casePrecedenceType(PrecedenceType object) { |
| 232 | return createPrecedenceTypeAdapter(); |
| 233 | } |
| 234 | @Override |
| 235 | public Adapter caseProcessorBindingType(ProcessorBindingType object) { |
| 236 | return createProcessorBindingTypeAdapter(); |
| 237 | } |
| 238 | @Override |
| 239 | public Adapter caseProcessorType(ProcessorType object) { |
| 240 | return createProcessorTypeAdapter(); |
| 241 | } |
| 242 | @Override |
| 243 | public Adapter caseReplyActivityType(ReplyActivityType object) { |
| 244 | return createReplyActivityTypeAdapter(); |
| 245 | } |
| 246 | @Override |
| 247 | public Adapter caseReplyEntryType(ReplyEntryType object) { |
| 248 | return createReplyEntryTypeAdapter(); |
| 249 | } |
| 250 | @Override |
| 251 | public Adapter caseResultConf95Type(ResultConf95Type object) { |
| 252 | return createResultConf95TypeAdapter(); |
| 253 | } |
| 254 | @Override |
| 255 | public Adapter caseResultConf95Type1(ResultConf95Type1 object) { |
| 256 | return createResultConf95Type1Adapter(); |
| 257 | } |
| 258 | @Override |
| 259 | public Adapter caseResultConf99Type(ResultConf99Type object) { |
| 260 | return createResultConf99TypeAdapter(); |
| 261 | } |
| 262 | @Override |
| 263 | public Adapter caseResultConf99Type1(ResultConf99Type1 object) { |
| 264 | return createResultConf99Type1Adapter(); |
| 265 | } |
| 266 | @Override |
| 267 | public Adapter caseResultGeneralType(ResultGeneralType object) { |
| 268 | return createResultGeneralTypeAdapter(); |
| 269 | } |
| 270 | @Override |
| 271 | public Adapter caseRunControlType(RunControlType object) { |
| 272 | return createRunControlTypeAdapter(); |
| 273 | } |
| 274 | @Override |
| 275 | public Adapter caseServiceType(ServiceType object) { |
| 276 | return createServiceTypeAdapter(); |
| 277 | } |
| 278 | @Override |
| 279 | public Adapter caseSingleActivityListType(SingleActivityListType object) { |
| 280 | return createSingleActivityListTypeAdapter(); |
| 281 | } |
| 282 | @Override |
| 283 | public Adapter caseSlotType(SlotType object) { |
| 284 | return createSlotTypeAdapter(); |
| 285 | } |
| 286 | @Override |
| 287 | public Adapter caseSolverParamsType(SolverParamsType object) { |
| 288 | return createSolverParamsTypeAdapter(); |
| 289 | } |
| 290 | @Override |
| 291 | public Adapter caseSynchCallType(SynchCallType object) { |
| 292 | return createSynchCallTypeAdapter(); |
| 293 | } |
| 294 | @Override |
| 295 | public Adapter caseTaskActivityGraph(TaskActivityGraph object) { |
| 296 | return createTaskActivityGraphAdapter(); |
| 297 | } |
| 298 | @Override |
| 299 | public Adapter caseTaskType(TaskType object) { |
| 300 | return createTaskTypeAdapter(); |
| 301 | } |
| 302 | @Override |
| 303 | public Adapter defaultCase(EObject object) { |
| 304 | return createEObjectAdapter(); |
| 305 | } |
| 306 | }; |
| 307 | |
| 308 | /** |
| 309 | * Creates an adapter for the <code>target</code>. |
| 310 | * <!-- begin-user-doc --> |
| 311 | * <!-- end-user-doc --> |
| 312 | * @param target the object to adapt. |
| 313 | * @return the adapter for the <code>target</code>. |
| 314 | * @generated |
| 315 | */ |
| 316 | @Override |
| 317 | public Adapter createAdapter(Notifier target) { |
| 318 | return modelSwitch.doSwitch((EObject)target); |
| 319 | } |
| 320 | |
| 321 | |
| 322 | /** |
| 323 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityDefBase <em>Activity Def Base</em>}'. |
| 324 | * <!-- begin-user-doc --> |
| 325 | * This default implementation returns null so that we can easily ignore cases; |
| 326 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 327 | * <!-- end-user-doc --> |
| 328 | * @return the new adapter. |
| 329 | * @see LqnCore.ActivityDefBase |
| 330 | * @generated |
| 331 | */ |
| 332 | public Adapter createActivityDefBaseAdapter() { |
| 333 | return null; |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityDefType <em>Activity Def Type</em>}'. |
| 338 | * <!-- begin-user-doc --> |
| 339 | * This default implementation returns null so that we can easily ignore cases; |
| 340 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 341 | * <!-- end-user-doc --> |
| 342 | * @return the new adapter. |
| 343 | * @see LqnCore.ActivityDefType |
| 344 | * @generated |
| 345 | */ |
| 346 | public Adapter createActivityDefTypeAdapter() { |
| 347 | return null; |
| 348 | } |
| 349 | |
| 350 | /** |
| 351 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityGraphBase <em>Activity Graph Base</em>}'. |
| 352 | * <!-- begin-user-doc --> |
| 353 | * This default implementation returns null so that we can easily ignore cases; |
| 354 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 355 | * <!-- end-user-doc --> |
| 356 | * @return the new adapter. |
| 357 | * @see LqnCore.ActivityGraphBase |
| 358 | * @generated |
| 359 | */ |
| 360 | public Adapter createActivityGraphBaseAdapter() { |
| 361 | return null; |
| 362 | } |
| 363 | |
| 364 | /** |
| 365 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityListType <em>Activity List Type</em>}'. |
| 366 | * <!-- begin-user-doc --> |
| 367 | * This default implementation returns null so that we can easily ignore cases; |
| 368 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 369 | * <!-- end-user-doc --> |
| 370 | * @return the new adapter. |
| 371 | * @see LqnCore.ActivityListType |
| 372 | * @generated |
| 373 | */ |
| 374 | public Adapter createActivityListTypeAdapter() { |
| 375 | return null; |
| 376 | } |
| 377 | |
| 378 | /** |
| 379 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityLoopListType <em>Activity Loop List Type</em>}'. |
| 380 | * <!-- begin-user-doc --> |
| 381 | * This default implementation returns null so that we can easily ignore cases; |
| 382 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 383 | * <!-- end-user-doc --> |
| 384 | * @return the new adapter. |
| 385 | * @see LqnCore.ActivityLoopListType |
| 386 | * @generated |
| 387 | */ |
| 388 | public Adapter createActivityLoopListTypeAdapter() { |
| 389 | return null; |
| 390 | } |
| 391 | |
| 392 | /** |
| 393 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityLoopType <em>Activity Loop Type</em>}'. |
| 394 | * <!-- begin-user-doc --> |
| 395 | * This default implementation returns null so that we can easily ignore cases; |
| 396 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 397 | * <!-- end-user-doc --> |
| 398 | * @return the new adapter. |
| 399 | * @see LqnCore.ActivityLoopType |
| 400 | * @generated |
| 401 | */ |
| 402 | public Adapter createActivityLoopTypeAdapter() { |
| 403 | return null; |
| 404 | } |
| 405 | |
| 406 | /** |
| 407 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityMakingCallType <em>Activity Making Call Type</em>}'. |
| 408 | * <!-- begin-user-doc --> |
| 409 | * This default implementation returns null so that we can easily ignore cases; |
| 410 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 411 | * <!-- end-user-doc --> |
| 412 | * @return the new adapter. |
| 413 | * @see LqnCore.ActivityMakingCallType |
| 414 | * @generated |
| 415 | */ |
| 416 | public Adapter createActivityMakingCallTypeAdapter() { |
| 417 | return null; |
| 418 | } |
| 419 | |
| 420 | /** |
| 421 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityOrType <em>Activity Or Type</em>}'. |
| 422 | * <!-- begin-user-doc --> |
| 423 | * This default implementation returns null so that we can easily ignore cases; |
| 424 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 425 | * <!-- end-user-doc --> |
| 426 | * @return the new adapter. |
| 427 | * @see LqnCore.ActivityOrType |
| 428 | * @generated |
| 429 | */ |
| 430 | public Adapter createActivityOrTypeAdapter() { |
| 431 | return null; |
| 432 | } |
| 433 | |
| 434 | /** |
| 435 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityPhasesType <em>Activity Phases Type</em>}'. |
| 436 | * <!-- begin-user-doc --> |
| 437 | * This default implementation returns null so that we can easily ignore cases; |
| 438 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 439 | * <!-- end-user-doc --> |
| 440 | * @return the new adapter. |
| 441 | * @see LqnCore.ActivityPhasesType |
| 442 | * @generated |
| 443 | */ |
| 444 | public Adapter createActivityPhasesTypeAdapter() { |
| 445 | return null; |
| 446 | } |
| 447 | |
| 448 | /** |
| 449 | * Creates a new adapter for an object of class '{@link LqnCore.ActivityType <em>Activity Type</em>}'. |
| 450 | * <!-- begin-user-doc --> |
| 451 | * This default implementation returns null so that we can easily ignore cases; |
| 452 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 453 | * <!-- end-user-doc --> |
| 454 | * @return the new adapter. |
| 455 | * @see LqnCore.ActivityType |
| 456 | * @generated |
| 457 | */ |
| 458 | public Adapter createActivityTypeAdapter() { |
| 459 | return null; |
| 460 | } |
| 461 | |
| 462 | /** |
| 463 | * Creates a new adapter for an object of class '{@link LqnCore.AndJoinListType <em>And Join List Type</em>}'. |
| 464 | * <!-- begin-user-doc --> |
| 465 | * This default implementation returns null so that we can easily ignore cases; |
| 466 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 467 | * <!-- end-user-doc --> |
| 468 | * @return the new adapter. |
| 469 | * @see LqnCore.AndJoinListType |
| 470 | * @generated |
| 471 | */ |
| 472 | public Adapter createAndJoinListTypeAdapter() { |
| 473 | return null; |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * Creates a new adapter for an object of class '{@link LqnCore.AsynchCallType <em>Asynch Call Type</em>}'. |
| 478 | * <!-- begin-user-doc --> |
| 479 | * This default implementation returns null so that we can easily ignore cases; |
| 480 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 481 | * <!-- end-user-doc --> |
| 482 | * @return the new adapter. |
| 483 | * @see LqnCore.AsynchCallType |
| 484 | * @generated |
| 485 | */ |
| 486 | public Adapter createAsynchCallTypeAdapter() { |
| 487 | return null; |
| 488 | } |
| 489 | |
| 490 | /** |
| 491 | * Creates a new adapter for an object of class '{@link LqnCore.BindType <em>Bind Type</em>}'. |
| 492 | * <!-- begin-user-doc --> |
| 493 | * This default implementation returns null so that we can easily ignore cases; |
| 494 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 495 | * <!-- end-user-doc --> |
| 496 | * @return the new adapter. |
| 497 | * @see LqnCore.BindType |
| 498 | * @generated |
| 499 | */ |
| 500 | public Adapter createBindTypeAdapter() { |
| 501 | return null; |
| 502 | } |
| 503 | |
| 504 | /** |
| 505 | * Creates a new adapter for an object of class '{@link LqnCore.CallListType <em>Call List Type</em>}'. |
| 506 | * <!-- begin-user-doc --> |
| 507 | * This default implementation returns null so that we can easily ignore cases; |
| 508 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 509 | * <!-- end-user-doc --> |
| 510 | * @return the new adapter. |
| 511 | * @see LqnCore.CallListType |
| 512 | * @generated |
| 513 | */ |
| 514 | public Adapter createCallListTypeAdapter() { |
| 515 | return null; |
| 516 | } |
| 517 | |
| 518 | /** |
| 519 | * Creates a new adapter for an object of class '{@link LqnCore.DocumentRoot <em>Document Root</em>}'. |
| 520 | * <!-- begin-user-doc --> |
| 521 | * This default implementation returns null so that we can easily ignore cases; |
| 522 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 523 | * <!-- end-user-doc --> |
| 524 | * @return the new adapter. |
| 525 | * @see LqnCore.DocumentRoot |
| 526 | * @generated |
| 527 | */ |
| 528 | public Adapter createDocumentRootAdapter() { |
| 529 | return null; |
| 530 | } |
| 531 | |
| 532 | /** |
| 533 | * Creates a new adapter for an object of class '{@link LqnCore.EntryActivityDefType <em>Entry Activity Def Type</em>}'. |
| 534 | * <!-- begin-user-doc --> |
| 535 | * This default implementation returns null so that we can easily ignore cases; |
| 536 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 537 | * <!-- end-user-doc --> |
| 538 | * @return the new adapter. |
| 539 | * @see LqnCore.EntryActivityDefType |
| 540 | * @generated |
| 541 | */ |
| 542 | public Adapter createEntryActivityDefTypeAdapter() { |
| 543 | return null; |
| 544 | } |
| 545 | |
| 546 | /** |
| 547 | * Creates a new adapter for an object of class '{@link LqnCore.EntryActivityGraph <em>Entry Activity Graph</em>}'. |
| 548 | * <!-- begin-user-doc --> |
| 549 | * This default implementation returns null so that we can easily ignore cases; |
| 550 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 551 | * <!-- end-user-doc --> |
| 552 | * @return the new adapter. |
| 553 | * @see LqnCore.EntryActivityGraph |
| 554 | * @generated |
| 555 | */ |
| 556 | public Adapter createEntryActivityGraphAdapter() { |
| 557 | return null; |
| 558 | } |
| 559 | |
| 560 | /** |
| 561 | * Creates a new adapter for an object of class '{@link LqnCore.EntryMakingCallType <em>Entry Making Call Type</em>}'. |
| 562 | * <!-- begin-user-doc --> |
| 563 | * This default implementation returns null so that we can easily ignore cases; |
| 564 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 565 | * <!-- end-user-doc --> |
| 566 | * @return the new adapter. |
| 567 | * @see LqnCore.EntryMakingCallType |
| 568 | * @generated |
| 569 | */ |
| 570 | public Adapter createEntryMakingCallTypeAdapter() { |
| 571 | return null; |
| 572 | } |
| 573 | |
| 574 | /** |
| 575 | * Creates a new adapter for an object of class '{@link LqnCore.EntryType <em>Entry Type</em>}'. |
| 576 | * <!-- begin-user-doc --> |
| 577 | * This default implementation returns null so that we can easily ignore cases; |
| 578 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 579 | * <!-- end-user-doc --> |
| 580 | * @return the new adapter. |
| 581 | * @see LqnCore.EntryType |
| 582 | * @generated |
| 583 | */ |
| 584 | public Adapter createEntryTypeAdapter() { |
| 585 | return null; |
| 586 | } |
| 587 | |
| 588 | /** |
| 589 | * Creates a new adapter for an object of class '{@link LqnCore.FirstPlotType <em>First Plot Type</em>}'. |
| 590 | * <!-- begin-user-doc --> |
| 591 | * This default implementation returns null so that we can easily ignore cases; |
| 592 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 593 | * <!-- end-user-doc --> |
| 594 | * @return the new adapter. |
| 595 | * @see LqnCore.FirstPlotType |
| 596 | * @generated |
| 597 | */ |
| 598 | public Adapter createFirstPlotTypeAdapter() { |
| 599 | return null; |
| 600 | } |
| 601 | |
| 602 | /** |
| 603 | * Creates a new adapter for an object of class '{@link LqnCore.HistogramBinType <em>Histogram Bin Type</em>}'. |
| 604 | * <!-- begin-user-doc --> |
| 605 | * This default implementation returns null so that we can easily ignore cases; |
| 606 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 607 | * <!-- end-user-doc --> |
| 608 | * @return the new adapter. |
| 609 | * @see LqnCore.HistogramBinType |
| 610 | * @generated |
| 611 | */ |
| 612 | public Adapter createHistogramBinTypeAdapter() { |
| 613 | return null; |
| 614 | } |
| 615 | |
| 616 | /** |
| 617 | * Creates a new adapter for an object of class '{@link LqnCore.InPortType <em>In Port Type</em>}'. |
| 618 | * <!-- begin-user-doc --> |
| 619 | * This default implementation returns null so that we can easily ignore cases; |
| 620 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 621 | * <!-- end-user-doc --> |
| 622 | * @return the new adapter. |
| 623 | * @see LqnCore.InPortType |
| 624 | * @generated |
| 625 | */ |
| 626 | public Adapter createInPortTypeAdapter() { |
| 627 | return null; |
| 628 | } |
| 629 | |
| 630 | /** |
| 631 | * Creates a new adapter for an object of class '{@link LqnCore.InterfaceType <em>Interface Type</em>}'. |
| 632 | * <!-- begin-user-doc --> |
| 633 | * This default implementation returns null so that we can easily ignore cases; |
| 634 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 635 | * <!-- end-user-doc --> |
| 636 | * @return the new adapter. |
| 637 | * @see LqnCore.InterfaceType |
| 638 | * @generated |
| 639 | */ |
| 640 | public Adapter createInterfaceTypeAdapter() { |
| 641 | return null; |
| 642 | } |
| 643 | |
| 644 | /** |
| 645 | * Creates a new adapter for an object of class '{@link LqnCore.LqnCoreType <em>Type</em>}'. |
| 646 | * <!-- begin-user-doc --> |
| 647 | * This default implementation returns null so that we can easily ignore cases; |
| 648 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 649 | * <!-- end-user-doc --> |
| 650 | * @return the new adapter. |
| 651 | * @see LqnCore.LqnCoreType |
| 652 | * @generated |
| 653 | */ |
| 654 | public Adapter createLqnCoreTypeAdapter() { |
| 655 | return null; |
| 656 | } |
| 657 | |
| 658 | /** |
| 659 | * Creates a new adapter for an object of class '{@link LqnCore.LqnModelType <em>Lqn Model Type</em>}'. |
| 660 | * <!-- begin-user-doc --> |
| 661 | * This default implementation returns null so that we can easily ignore cases; |
| 662 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 663 | * <!-- end-user-doc --> |
| 664 | * @return the new adapter. |
| 665 | * @see LqnCore.LqnModelType |
| 666 | * @generated |
| 667 | */ |
| 668 | public Adapter createLqnModelTypeAdapter() { |
| 669 | return null; |
| 670 | } |
| 671 | |
| 672 | /** |
| 673 | * Creates a new adapter for an object of class '{@link LqnCore.MakingCallType <em>Making Call Type</em>}'. |
| 674 | * <!-- begin-user-doc --> |
| 675 | * This default implementation returns null so that we can easily ignore cases; |
| 676 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 677 | * <!-- end-user-doc --> |
| 678 | * @return the new adapter. |
| 679 | * @see LqnCore.MakingCallType |
| 680 | * @generated |
| 681 | */ |
| 682 | public Adapter createMakingCallTypeAdapter() { |
| 683 | return null; |
| 684 | } |
| 685 | |
| 686 | /** |
| 687 | * Creates a new adapter for an object of class '{@link LqnCore.OrListType <em>Or List Type</em>}'. |
| 688 | * <!-- begin-user-doc --> |
| 689 | * This default implementation returns null so that we can easily ignore cases; |
| 690 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 691 | * <!-- end-user-doc --> |
| 692 | * @return the new adapter. |
| 693 | * @see LqnCore.OrListType |
| 694 | * @generated |
| 695 | */ |
| 696 | public Adapter createOrListTypeAdapter() { |
| 697 | return null; |
| 698 | } |
| 699 | |
| 700 | /** |
| 701 | * Creates a new adapter for an object of class '{@link LqnCore.OutPortType <em>Out Port Type</em>}'. |
| 702 | * <!-- begin-user-doc --> |
| 703 | * This default implementation returns null so that we can easily ignore cases; |
| 704 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 705 | * <!-- end-user-doc --> |
| 706 | * @return the new adapter. |
| 707 | * @see LqnCore.OutPortType |
| 708 | * @generated |
| 709 | */ |
| 710 | public Adapter createOutPortTypeAdapter() { |
| 711 | return null; |
| 712 | } |
| 713 | |
| 714 | /** |
| 715 | * Creates a new adapter for an object of class '{@link LqnCore.OutputDistributionType <em>Output Distribution Type</em>}'. |
| 716 | * <!-- begin-user-doc --> |
| 717 | * This default implementation returns null so that we can easily ignore cases; |
| 718 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 719 | * <!-- end-user-doc --> |
| 720 | * @return the new adapter. |
| 721 | * @see LqnCore.OutputDistributionType |
| 722 | * @generated |
| 723 | */ |
| 724 | public Adapter createOutputDistributionTypeAdapter() { |
| 725 | return null; |
| 726 | } |
| 727 | |
| 728 | /** |
| 729 | * Creates a new adapter for an object of class '{@link LqnCore.OutputEntryDistributionType <em>Output Entry Distribution Type</em>}'. |
| 730 | * <!-- begin-user-doc --> |
| 731 | * This default implementation returns null so that we can easily ignore cases; |
| 732 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 733 | * <!-- end-user-doc --> |
| 734 | * @return the new adapter. |
| 735 | * @see LqnCore.OutputEntryDistributionType |
| 736 | * @generated |
| 737 | */ |
| 738 | public Adapter createOutputEntryDistributionTypeAdapter() { |
| 739 | return null; |
| 740 | } |
| 741 | |
| 742 | /** |
| 743 | * Creates a new adapter for an object of class '{@link LqnCore.OutputResultForwardingANDJoinDelay <em>Output Result Forwarding AND Join Delay</em>}'. |
| 744 | * <!-- begin-user-doc --> |
| 745 | * This default implementation returns null so that we can easily ignore cases; |
| 746 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 747 | * <!-- end-user-doc --> |
| 748 | * @return the new adapter. |
| 749 | * @see LqnCore.OutputResultForwardingANDJoinDelay |
| 750 | * @generated |
| 751 | */ |
| 752 | public Adapter createOutputResultForwardingANDJoinDelayAdapter() { |
| 753 | return null; |
| 754 | } |
| 755 | |
| 756 | /** |
| 757 | * Creates a new adapter for an object of class '{@link LqnCore.OutputResultType <em>Output Result Type</em>}'. |
| 758 | * <!-- begin-user-doc --> |
| 759 | * This default implementation returns null so that we can easily ignore cases; |
| 760 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 761 | * <!-- end-user-doc --> |
| 762 | * @return the new adapter. |
| 763 | * @see LqnCore.OutputResultType |
| 764 | * @generated |
| 765 | */ |
| 766 | public Adapter createOutputResultTypeAdapter() { |
| 767 | return null; |
| 768 | } |
| 769 | |
| 770 | /** |
| 771 | * Creates a new adapter for an object of class '{@link LqnCore.ParameterType <em>Parameter Type</em>}'. |
| 772 | * <!-- begin-user-doc --> |
| 773 | * This default implementation returns null so that we can easily ignore cases; |
| 774 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 775 | * <!-- end-user-doc --> |
| 776 | * @return the new adapter. |
| 777 | * @see LqnCore.ParameterType |
| 778 | * @generated |
| 779 | */ |
| 780 | public Adapter createParameterTypeAdapter() { |
| 781 | return null; |
| 782 | } |
| 783 | |
| 784 | /** |
| 785 | * Creates a new adapter for an object of class '{@link LqnCore.ParaType <em>Para Type</em>}'. |
| 786 | * <!-- begin-user-doc --> |
| 787 | * This default implementation returns null so that we can easily ignore cases; |
| 788 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 789 | * <!-- end-user-doc --> |
| 790 | * @return the new adapter. |
| 791 | * @see LqnCore.ParaType |
| 792 | * @generated |
| 793 | */ |
| 794 | public Adapter createParaTypeAdapter() { |
| 795 | return null; |
| 796 | } |
| 797 | |
| 798 | /** |
| 799 | * Creates a new adapter for an object of class '{@link LqnCore.PhaseActivities <em>Phase Activities</em>}'. |
| 800 | * <!-- begin-user-doc --> |
| 801 | * This default implementation returns null so that we can easily ignore cases; |
| 802 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 803 | * <!-- end-user-doc --> |
| 804 | * @return the new adapter. |
| 805 | * @see LqnCore.PhaseActivities |
| 806 | * @generated |
| 807 | */ |
| 808 | public Adapter createPhaseActivitiesAdapter() { |
| 809 | return null; |
| 810 | } |
| 811 | |
| 812 | /** |
| 813 | * Creates a new adapter for an object of class '{@link LqnCore.PlotControlType <em>Plot Control Type</em>}'. |
| 814 | * <!-- begin-user-doc --> |
| 815 | * This default implementation returns null so that we can easily ignore cases; |
| 816 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 817 | * <!-- end-user-doc --> |
| 818 | * @return the new adapter. |
| 819 | * @see LqnCore.PlotControlType |
| 820 | * @generated |
| 821 | */ |
| 822 | public Adapter createPlotControlTypeAdapter() { |
| 823 | return null; |
| 824 | } |
| 825 | |
| 826 | /** |
| 827 | * Creates a new adapter for an object of class '{@link LqnCore.PlotType <em>Plot Type</em>}'. |
| 828 | * <!-- begin-user-doc --> |
| 829 | * This default implementation returns null so that we can easily ignore cases; |
| 830 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 831 | * <!-- end-user-doc --> |
| 832 | * @return the new adapter. |
| 833 | * @see LqnCore.PlotType |
| 834 | * @generated |
| 835 | */ |
| 836 | public Adapter createPlotTypeAdapter() { |
| 837 | return null; |
| 838 | } |
| 839 | |
| 840 | /** |
| 841 | * Creates a new adapter for an object of class '{@link LqnCore.PortBindingType <em>Port Binding Type</em>}'. |
| 842 | * <!-- begin-user-doc --> |
| 843 | * This default implementation returns null so that we can easily ignore cases; |
| 844 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 845 | * <!-- end-user-doc --> |
| 846 | * @return the new adapter. |
| 847 | * @see LqnCore.PortBindingType |
| 848 | * @generated |
| 849 | */ |
| 850 | public Adapter createPortBindingTypeAdapter() { |
| 851 | return null; |
| 852 | } |
| 853 | |
| 854 | /** |
| 855 | * Creates a new adapter for an object of class '{@link LqnCore.PragmaType <em>Pragma Type</em>}'. |
| 856 | * <!-- begin-user-doc --> |
| 857 | * This default implementation returns null so that we can easily ignore cases; |
| 858 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 859 | * <!-- end-user-doc --> |
| 860 | * @return the new adapter. |
| 861 | * @see LqnCore.PragmaType |
| 862 | * @generated |
| 863 | */ |
| 864 | public Adapter createPragmaTypeAdapter() { |
| 865 | return null; |
| 866 | } |
| 867 | |
| 868 | /** |
| 869 | * Creates a new adapter for an object of class '{@link LqnCore.PrecedenceType <em>Precedence Type</em>}'. |
| 870 | * <!-- begin-user-doc --> |
| 871 | * This default implementation returns null so that we can easily ignore cases; |
| 872 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 873 | * <!-- end-user-doc --> |
| 874 | * @return the new adapter. |
| 875 | * @see LqnCore.PrecedenceType |
| 876 | * @generated |
| 877 | */ |
| 878 | public Adapter createPrecedenceTypeAdapter() { |
| 879 | return null; |
| 880 | } |
| 881 | |
| 882 | /** |
| 883 | * Creates a new adapter for an object of class '{@link LqnCore.ProcessorBindingType <em>Processor Binding Type</em>}'. |
| 884 | * <!-- begin-user-doc --> |
| 885 | * This default implementation returns null so that we can easily ignore cases; |
| 886 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 887 | * <!-- end-user-doc --> |
| 888 | * @return the new adapter. |
| 889 | * @see LqnCore.ProcessorBindingType |
| 890 | * @generated |
| 891 | */ |
| 892 | public Adapter createProcessorBindingTypeAdapter() { |
| 893 | return null; |
| 894 | } |
| 895 | |
| 896 | /** |
| 897 | * Creates a new adapter for an object of class '{@link LqnCore.ProcessorType <em>Processor Type</em>}'. |
| 898 | * <!-- begin-user-doc --> |
| 899 | * This default implementation returns null so that we can easily ignore cases; |
| 900 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 901 | * <!-- end-user-doc --> |
| 902 | * @return the new adapter. |
| 903 | * @see LqnCore.ProcessorType |
| 904 | * @generated |
| 905 | */ |
| 906 | public Adapter createProcessorTypeAdapter() { |
| 907 | return null; |
| 908 | } |
| 909 | |
| 910 | /** |
| 911 | * Creates a new adapter for an object of class '{@link LqnCore.ReplyActivityType <em>Reply Activity Type</em>}'. |
| 912 | * <!-- begin-user-doc --> |
| 913 | * This default implementation returns null so that we can easily ignore cases; |
| 914 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 915 | * <!-- end-user-doc --> |
| 916 | * @return the new adapter. |
| 917 | * @see LqnCore.ReplyActivityType |
| 918 | * @generated |
| 919 | */ |
| 920 | public Adapter createReplyActivityTypeAdapter() { |
| 921 | return null; |
| 922 | } |
| 923 | |
| 924 | /** |
| 925 | * Creates a new adapter for an object of class '{@link LqnCore.ReplyEntryType <em>Reply Entry Type</em>}'. |
| 926 | * <!-- begin-user-doc --> |
| 927 | * This default implementation returns null so that we can easily ignore cases; |
| 928 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 929 | * <!-- end-user-doc --> |
| 930 | * @return the new adapter. |
| 931 | * @see LqnCore.ReplyEntryType |
| 932 | * @generated |
| 933 | */ |
| 934 | public Adapter createReplyEntryTypeAdapter() { |
| 935 | return null; |
| 936 | } |
| 937 | |
| 938 | /** |
| 939 | * Creates a new adapter for an object of class '{@link LqnCore.ResultConf95Type <em>Result Conf95 Type</em>}'. |
| 940 | * <!-- begin-user-doc --> |
| 941 | * This default implementation returns null so that we can easily ignore cases; |
| 942 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 943 | * <!-- end-user-doc --> |
| 944 | * @return the new adapter. |
| 945 | * @see LqnCore.ResultConf95Type |
| 946 | * @generated |
| 947 | */ |
| 948 | public Adapter createResultConf95TypeAdapter() { |
| 949 | return null; |
| 950 | } |
| 951 | |
| 952 | /** |
| 953 | * Creates a new adapter for an object of class '{@link LqnCore.ResultConf95Type1 <em>Result Conf95 Type1</em>}'. |
| 954 | * <!-- begin-user-doc --> |
| 955 | * This default implementation returns null so that we can easily ignore cases; |
| 956 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 957 | * <!-- end-user-doc --> |
| 958 | * @return the new adapter. |
| 959 | * @see LqnCore.ResultConf95Type1 |
| 960 | * @generated |
| 961 | */ |
| 962 | public Adapter createResultConf95Type1Adapter() { |
| 963 | return null; |
| 964 | } |
| 965 | |
| 966 | /** |
| 967 | * Creates a new adapter for an object of class '{@link LqnCore.ResultConf99Type <em>Result Conf99 Type</em>}'. |
| 968 | * <!-- begin-user-doc --> |
| 969 | * This default implementation returns null so that we can easily ignore cases; |
| 970 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 971 | * <!-- end-user-doc --> |
| 972 | * @return the new adapter. |
| 973 | * @see LqnCore.ResultConf99Type |
| 974 | * @generated |
| 975 | */ |
| 976 | public Adapter createResultConf99TypeAdapter() { |
| 977 | return null; |
| 978 | } |
| 979 | |
| 980 | /** |
| 981 | * Creates a new adapter for an object of class '{@link LqnCore.ResultConf99Type1 <em>Result Conf99 Type1</em>}'. |
| 982 | * <!-- begin-user-doc --> |
| 983 | * This default implementation returns null so that we can easily ignore cases; |
| 984 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 985 | * <!-- end-user-doc --> |
| 986 | * @return the new adapter. |
| 987 | * @see LqnCore.ResultConf99Type1 |
| 988 | * @generated |
| 989 | */ |
| 990 | public Adapter createResultConf99Type1Adapter() { |
| 991 | return null; |
| 992 | } |
| 993 | |
| 994 | /** |
| 995 | * Creates a new adapter for an object of class '{@link LqnCore.ResultGeneralType <em>Result General Type</em>}'. |
| 996 | * <!-- begin-user-doc --> |
| 997 | * This default implementation returns null so that we can easily ignore cases; |
| 998 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 999 | * <!-- end-user-doc --> |
| 1000 | * @return the new adapter. |
| 1001 | * @see LqnCore.ResultGeneralType |
| 1002 | * @generated |
| 1003 | */ |
| 1004 | public Adapter createResultGeneralTypeAdapter() { |
| 1005 | return null; |
| 1006 | } |
| 1007 | |
| 1008 | /** |
| 1009 | * Creates a new adapter for an object of class '{@link LqnCore.RunControlType <em>Run Control Type</em>}'. |
| 1010 | * <!-- begin-user-doc --> |
| 1011 | * This default implementation returns null so that we can easily ignore cases; |
| 1012 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 1013 | * <!-- end-user-doc --> |
| 1014 | * @return the new adapter. |
| 1015 | * @see LqnCore.RunControlType |
| 1016 | * @generated |
| 1017 | */ |
| 1018 | public Adapter createRunControlTypeAdapter() { |
| 1019 | return null; |
| 1020 | } |
| 1021 | |
| 1022 | /** |
| 1023 | * Creates a new adapter for an object of class '{@link LqnCore.ServiceType <em>Service Type</em>}'. |
| 1024 | * <!-- begin-user-doc --> |
| 1025 | * This default implementation returns null so that we can easily ignore cases; |
| 1026 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 1027 | * <!-- end-user-doc --> |
| 1028 | * @return the new adapter. |
| 1029 | * @see LqnCore.ServiceType |
| 1030 | * @generated |
| 1031 | */ |
| 1032 | public Adapter createServiceTypeAdapter() { |
| 1033 | return null; |
| 1034 | } |
| 1035 | |
| 1036 | /** |
| 1037 | * Creates a new adapter for an object of class '{@link LqnCore.SingleActivityListType <em>Single Activity List Type</em>}'. |
| 1038 | * <!-- begin-user-doc --> |
| 1039 | * This default implementation returns null so that we can easily ignore cases; |
| 1040 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 1041 | * <!-- end-user-doc --> |
| 1042 | * @return the new adapter. |
| 1043 | * @see LqnCore.SingleActivityListType |
| 1044 | * @generated |
| 1045 | */ |
| 1046 | public Adapter createSingleActivityListTypeAdapter() { |
| 1047 | return null; |
| 1048 | } |
| 1049 | |
| 1050 | /** |
| 1051 | * Creates a new adapter for an object of class '{@link LqnCore.SlotType <em>Slot Type</em>}'. |
| 1052 | * <!-- begin-user-doc --> |
| 1053 | * This default implementation returns null so that we can easily ignore cases; |
| 1054 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 1055 | * <!-- end-user-doc --> |
| 1056 | * @return the new adapter. |
| 1057 | * @see LqnCore.SlotType |
| 1058 | * @generated |
| 1059 | */ |
| 1060 | public Adapter createSlotTypeAdapter() { |
| 1061 | return null; |
| 1062 | } |
| 1063 | |
| 1064 | /** |
| 1065 | * Creates a new adapter for an object of class '{@link LqnCore.SolverParamsType <em>Solver Params Type</em>}'. |
| 1066 | * <!-- begin-user-doc --> |
| 1067 | * This default implementation returns null so that we can easily ignore cases; |
| 1068 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 1069 | * <!-- end-user-doc --> |
| 1070 | * @return the new adapter. |
| 1071 | * @see LqnCore.SolverParamsType |
| 1072 | * @generated |
| 1073 | */ |
| 1074 | public Adapter createSolverParamsTypeAdapter() { |
| 1075 | return null; |
| 1076 | } |
| 1077 | |
| 1078 | /** |
| 1079 | * Creates a new adapter for an object of class '{@link LqnCore.SynchCallType <em>Synch Call Type</em>}'. |
| 1080 | * <!-- begin-user-doc --> |
| 1081 | * This default implementation returns null so that we can easily ignore cases; |
| 1082 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 1083 | * <!-- end-user-doc --> |
| 1084 | * @return the new adapter. |
| 1085 | * @see LqnCore.SynchCallType |
| 1086 | * @generated |
| 1087 | */ |
| 1088 | public Adapter createSynchCallTypeAdapter() { |
| 1089 | return null; |
| 1090 | } |
| 1091 | |
| 1092 | /** |
| 1093 | * Creates a new adapter for an object of class '{@link LqnCore.TaskActivityGraph <em>Task Activity Graph</em>}'. |
| 1094 | * <!-- begin-user-doc --> |
| 1095 | * This default implementation returns null so that we can easily ignore cases; |
| 1096 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 1097 | * <!-- end-user-doc --> |
| 1098 | * @return the new adapter. |
| 1099 | * @see LqnCore.TaskActivityGraph |
| 1100 | * @generated |
| 1101 | */ |
| 1102 | public Adapter createTaskActivityGraphAdapter() { |
| 1103 | return null; |
| 1104 | } |
| 1105 | |
| 1106 | /** |
| 1107 | * Creates a new adapter for an object of class '{@link LqnCore.TaskType <em>Task Type</em>}'. |
| 1108 | * <!-- begin-user-doc --> |
| 1109 | * This default implementation returns null so that we can easily ignore cases; |
| 1110 | * it's useful to ignore a case when inheritance will catch all the cases anyway. |
| 1111 | * <!-- end-user-doc --> |
| 1112 | * @return the new adapter. |
| 1113 | * @see LqnCore.TaskType |
| 1114 | * @generated |
| 1115 | */ |
| 1116 | public Adapter createTaskTypeAdapter() { |
| 1117 | return null; |
| 1118 | } |
| 1119 | |
| 1120 | /** |
| 1121 | * Creates a new adapter for the default case. |
| 1122 | * <!-- begin-user-doc --> |
| 1123 | * This default implementation returns null. |
| 1124 | * <!-- end-user-doc --> |
| 1125 | * @return the new adapter. |
| 1126 | * @generated |
| 1127 | */ |
| 1128 | public Adapter createEObjectAdapter() { |
| 1129 | return null; |
| 1130 | } |
| 1131 | |
| 1132 | } //LqnCoreAdapterFactory |