aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/util/TaxationWithRootAdapterFactory.java
blob: bc6cd6e2b1294814151ff07bf7a43725e1a16632 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
/**
 */
package TaxationWithRoot.util;

import TaxationWithRoot.*;

import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notifier;

import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * The <b>Adapter Factory</b> for the model.
 * It provides an adapter <code>createXXX</code> method for each class of the model.
 * <!-- end-user-doc -->
 * @see TaxationWithRoot.TaxationWithRootPackage
 * @generated
 */
public class TaxationWithRootAdapterFactory extends AdapterFactoryImpl {
	/**
	 * The cached model package.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	protected static TaxationWithRootPackage modelPackage;

	/**
	 * Creates an instance of the adapter factory.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public TaxationWithRootAdapterFactory() {
		if (modelPackage == null) {
			modelPackage = TaxationWithRootPackage.eINSTANCE;
		}
	}

	/**
	 * Returns whether this factory is applicable for the type of the object.
	 * <!-- begin-user-doc -->
	 * This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model.
	 * <!-- end-user-doc -->
	 * @return whether this factory is applicable for the type of the object.
	 * @generated
	 */
	@Override
	public boolean isFactoryForType(Object object) {
		if (object == modelPackage) {
			return true;
		}
		if (object instanceof EObject) {
			return ((EObject)object).eClass().getEPackage() == modelPackage;
		}
		return false;
	}

	/**
	 * The switch that delegates to the <code>createXXX</code> methods.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	protected TaxationWithRootSwitch<Adapter> modelSwitch =
		new TaxationWithRootSwitch<Adapter>() {
			@Override
			public Adapter caseConstants(Constants object) {
				return createConstantsAdapter();
			}
			@Override
			public Adapter caseIncome_Tax(Income_Tax object) {
				return createIncome_TaxAdapter();
			}
			@Override
			public Adapter caseTax_Payer(Tax_Payer object) {
				return createTax_PayerAdapter();
			}
			@Override
			public Adapter casePhysical_Person(Physical_Person object) {
				return createPhysical_PersonAdapter();
			}
			@Override
			public Adapter caseAddress(Address object) {
				return createAddressAdapter();
			}
			@Override
			public Adapter caseExpense(Expense object) {
				return createExpenseAdapter();
			}
			@Override
			public Adapter caseDependent(Dependent object) {
				return createDependentAdapter();
			}
			@Override
			public Adapter caseExternal_Allowance(External_Allowance object) {
				return createExternal_AllowanceAdapter();
			}
			@Override
			public Adapter caseHousehold(Household object) {
				return createHouseholdAdapter();
			}
			@Override
			public Adapter caseLegal_Union_Record(Legal_Union_Record object) {
				return createLegal_Union_RecordAdapter();
			}
			@Override
			public Adapter caseTax_Property(Tax_Property object) {
				return createTax_PropertyAdapter();
			}
			@Override
			public Adapter caseTax_Case(Tax_Case object) {
				return createTax_CaseAdapter();
			}
			@Override
			public Adapter caseFromAgent(FromAgent object) {
				return createFromAgentAdapter();
			}
			@Override
			public Adapter caseIncome(Income object) {
				return createIncomeAdapter();
			}
			@Override
			public Adapter caseIncome_Type(Income_Type object) {
				return createIncome_TypeAdapter();
			}
			@Override
			public Adapter caseTax_Card(Tax_Card object) {
				return createTax_CardAdapter();
			}
			@Override
			public Adapter caseIncome_Tax_Credit(Income_Tax_Credit object) {
				return createIncome_Tax_CreditAdapter();
			}
			@Override
			public Adapter caseIncome_Detail(Income_Detail object) {
				return createIncome_DetailAdapter();
			}
			@Override
			public Adapter caseFromLaw(FromLaw object) {
				return createFromLawAdapter();
			}
			@Override
			public Adapter caseFiscal_Address(Fiscal_Address object) {
				return createFiscal_AddressAdapter();
			}
			@Override
			public Adapter caseHabitual_Address(Habitual_Address object) {
				return createHabitual_AddressAdapter();
			}
			@Override
			public Adapter caseMarriage_Record(Marriage_Record object) {
				return createMarriage_RecordAdapter();
			}
			@Override
			public Adapter caseNon_Resident_Tax_Payer(Non_Resident_Tax_Payer object) {
				return createNon_Resident_Tax_PayerAdapter();
			}
			@Override
			public Adapter casePartnership_Record(Partnership_Record object) {
				return createPartnership_RecordAdapter();
			}
			@Override
			public Adapter caseResident_Tax_Payer(Resident_Tax_Payer object) {
				return createResident_Tax_PayerAdapter();
			}
			@Override
			public Adapter caseTrade_and_Business_Income(Trade_and_Business_Income object) {
				return createTrade_and_Business_IncomeAdapter();
			}
			@Override
			public Adapter caseAgriculture_and_Forestry_Income(Agriculture_and_Forestry_Income object) {
				return createAgriculture_and_Forestry_IncomeAdapter();
			}
			@Override
			public Adapter casePensions_and_Annuities_Income(Pensions_and_Annuities_Income object) {
				return createPensions_and_Annuities_IncomeAdapter();
			}
			@Override
			public Adapter caseCapital_and_Investments_Income(Capital_and_Investments_Income object) {
				return createCapital_and_Investments_IncomeAdapter();
			}
			@Override
			public Adapter caseEmployment_Income(Employment_Income object) {
				return createEmployment_IncomeAdapter();
			}
			@Override
			public Adapter caseRentals_and_Leases_Income(Rentals_and_Leases_Income object) {
				return createRentals_and_Leases_IncomeAdapter();
			}
			@Override
			public Adapter caseForeign_Income(Foreign_Income object) {
				return createForeign_IncomeAdapter();
			}
			@Override
			public Adapter caseLocal_Income(Local_Income object) {
				return createLocal_IncomeAdapter();
			}
			@Override
			public Adapter caseCIM(CIM object) {
				return createCIMAdapter();
			}
			@Override
			public Adapter caseCIP(CIP object) {
				return createCIPAdapter();
			}
			@Override
			public Adapter caseCIS(CIS object) {
				return createCISAdapter();
			}
			@Override
			public Adapter casePermanent_Expense(Permanent_Expense object) {
				return createPermanent_ExpenseAdapter();
			}
			@Override
			public Adapter caseSpecial_Expense_DS(Special_Expense_DS object) {
				return createSpecial_Expense_DSAdapter();
			}
			@Override
			public Adapter caseInterest_Expense(Interest_Expense object) {
				return createInterest_ExpenseAdapter();
			}
			@Override
			public Adapter casePrivate_Insurance_and_Plan(Private_Insurance_and_Plan object) {
				return createPrivate_Insurance_and_PlanAdapter();
			}
			@Override
			public Adapter caseHealth_and_Pension_Insurance(Health_and_Pension_Insurance object) {
				return createHealth_and_Pension_InsuranceAdapter();
			}
			@Override
			public Adapter caseDonation(Donation object) {
				return createDonationAdapter();
			}
			@Override
			public Adapter caseLoss_Carryforward(Loss_Carryforward object) {
				return createLoss_CarryforwardAdapter();
			}
			@Override
			public Adapter caseSpousal_Expense_AC(Spousal_Expense_AC object) {
				return createSpousal_Expense_ACAdapter();
			}
			@Override
			public Adapter caseExtraordinary_Expense_CE(Extraordinary_Expense_CE object) {
				return createExtraordinary_Expense_CEAdapter();
			}
			@Override
			public Adapter caseTravel_Expense_FD(Travel_Expense_FD object) {
				return createTravel_Expense_FDAdapter();
			}
			@Override
			public Adapter caseProfessional_Expense(Professional_Expense object) {
				return createProfessional_ExpenseAdapter();
			}
			@Override
			public Adapter caseMiscellaneous_Expense_FO(Miscellaneous_Expense_FO object) {
				return createMiscellaneous_Expense_FOAdapter();
			}
			@Override
			public Adapter caseResource(Resource object) {
				return createResourceAdapter();
			}
			@Override
			public Adapter defaultCase(EObject object) {
				return createEObjectAdapter();
			}
		};

	/**
	 * Creates an adapter for the <code>target</code>.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param target the object to adapt.
	 * @return the adapter for the <code>target</code>.
	 * @generated
	 */
	@Override
	public Adapter createAdapter(Notifier target) {
		return modelSwitch.doSwitch((EObject)target);
	}


	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Constants <em>Constants</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Constants
	 * @generated
	 */
	public Adapter createConstantsAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Income_Tax <em>Income Tax</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Income_Tax
	 * @generated
	 */
	public Adapter createIncome_TaxAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Tax_Payer <em>Tax Payer</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Tax_Payer
	 * @generated
	 */
	public Adapter createTax_PayerAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Physical_Person <em>Physical Person</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Physical_Person
	 * @generated
	 */
	public Adapter createPhysical_PersonAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Address <em>Address</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Address
	 * @generated
	 */
	public Adapter createAddressAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Expense <em>Expense</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Expense
	 * @generated
	 */
	public Adapter createExpenseAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Dependent <em>Dependent</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Dependent
	 * @generated
	 */
	public Adapter createDependentAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.External_Allowance <em>External Allowance</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.External_Allowance
	 * @generated
	 */
	public Adapter createExternal_AllowanceAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Household <em>Household</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Household
	 * @generated
	 */
	public Adapter createHouseholdAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Legal_Union_Record <em>Legal Union Record</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Legal_Union_Record
	 * @generated
	 */
	public Adapter createLegal_Union_RecordAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Tax_Property <em>Tax Property</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Tax_Property
	 * @generated
	 */
	public Adapter createTax_PropertyAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Tax_Case <em>Tax Case</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Tax_Case
	 * @generated
	 */
	public Adapter createTax_CaseAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.FromAgent <em>From Agent</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.FromAgent
	 * @generated
	 */
	public Adapter createFromAgentAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Income <em>Income</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Income
	 * @generated
	 */
	public Adapter createIncomeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Income_Type <em>Income Type</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Income_Type
	 * @generated
	 */
	public Adapter createIncome_TypeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Tax_Card <em>Tax Card</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Tax_Card
	 * @generated
	 */
	public Adapter createTax_CardAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Income_Tax_Credit <em>Income Tax Credit</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Income_Tax_Credit
	 * @generated
	 */
	public Adapter createIncome_Tax_CreditAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Income_Detail <em>Income Detail</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Income_Detail
	 * @generated
	 */
	public Adapter createIncome_DetailAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.FromLaw <em>From Law</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.FromLaw
	 * @generated
	 */
	public Adapter createFromLawAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Fiscal_Address <em>Fiscal Address</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Fiscal_Address
	 * @generated
	 */
	public Adapter createFiscal_AddressAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Habitual_Address <em>Habitual Address</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Habitual_Address
	 * @generated
	 */
	public Adapter createHabitual_AddressAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Marriage_Record <em>Marriage Record</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Marriage_Record
	 * @generated
	 */
	public Adapter createMarriage_RecordAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Non_Resident_Tax_Payer <em>Non Resident Tax Payer</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Non_Resident_Tax_Payer
	 * @generated
	 */
	public Adapter createNon_Resident_Tax_PayerAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Partnership_Record <em>Partnership Record</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Partnership_Record
	 * @generated
	 */
	public Adapter createPartnership_RecordAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Resident_Tax_Payer <em>Resident Tax Payer</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Resident_Tax_Payer
	 * @generated
	 */
	public Adapter createResident_Tax_PayerAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Trade_and_Business_Income <em>Trade and Business Income</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Trade_and_Business_Income
	 * @generated
	 */
	public Adapter createTrade_and_Business_IncomeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Agriculture_and_Forestry_Income <em>Agriculture and Forestry Income</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Agriculture_and_Forestry_Income
	 * @generated
	 */
	public Adapter createAgriculture_and_Forestry_IncomeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Pensions_and_Annuities_Income <em>Pensions and Annuities Income</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Pensions_and_Annuities_Income
	 * @generated
	 */
	public Adapter createPensions_and_Annuities_IncomeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Capital_and_Investments_Income <em>Capital and Investments Income</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Capital_and_Investments_Income
	 * @generated
	 */
	public Adapter createCapital_and_Investments_IncomeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Employment_Income <em>Employment Income</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Employment_Income
	 * @generated
	 */
	public Adapter createEmployment_IncomeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Rentals_and_Leases_Income <em>Rentals and Leases Income</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Rentals_and_Leases_Income
	 * @generated
	 */
	public Adapter createRentals_and_Leases_IncomeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Foreign_Income <em>Foreign Income</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Foreign_Income
	 * @generated
	 */
	public Adapter createForeign_IncomeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Local_Income <em>Local Income</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Local_Income
	 * @generated
	 */
	public Adapter createLocal_IncomeAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.CIM <em>CIM</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.CIM
	 * @generated
	 */
	public Adapter createCIMAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.CIP <em>CIP</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.CIP
	 * @generated
	 */
	public Adapter createCIPAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.CIS <em>CIS</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.CIS
	 * @generated
	 */
	public Adapter createCISAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Permanent_Expense <em>Permanent Expense</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Permanent_Expense
	 * @generated
	 */
	public Adapter createPermanent_ExpenseAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Special_Expense_DS <em>Special Expense DS</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Special_Expense_DS
	 * @generated
	 */
	public Adapter createSpecial_Expense_DSAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Interest_Expense <em>Interest Expense</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Interest_Expense
	 * @generated
	 */
	public Adapter createInterest_ExpenseAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Private_Insurance_and_Plan <em>Private Insurance and Plan</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Private_Insurance_and_Plan
	 * @generated
	 */
	public Adapter createPrivate_Insurance_and_PlanAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Health_and_Pension_Insurance <em>Health and Pension Insurance</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Health_and_Pension_Insurance
	 * @generated
	 */
	public Adapter createHealth_and_Pension_InsuranceAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Donation <em>Donation</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Donation
	 * @generated
	 */
	public Adapter createDonationAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Loss_Carryforward <em>Loss Carryforward</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Loss_Carryforward
	 * @generated
	 */
	public Adapter createLoss_CarryforwardAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Spousal_Expense_AC <em>Spousal Expense AC</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Spousal_Expense_AC
	 * @generated
	 */
	public Adapter createSpousal_Expense_ACAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Extraordinary_Expense_CE <em>Extraordinary Expense CE</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Extraordinary_Expense_CE
	 * @generated
	 */
	public Adapter createExtraordinary_Expense_CEAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Travel_Expense_FD <em>Travel Expense FD</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Travel_Expense_FD
	 * @generated
	 */
	public Adapter createTravel_Expense_FDAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Professional_Expense <em>Professional Expense</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Professional_Expense
	 * @generated
	 */
	public Adapter createProfessional_ExpenseAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Miscellaneous_Expense_FO <em>Miscellaneous Expense FO</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Miscellaneous_Expense_FO
	 * @generated
	 */
	public Adapter createMiscellaneous_Expense_FOAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for an object of class '{@link TaxationWithRoot.Resource <em>Resource</em>}'.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null so that we can easily ignore cases;
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @see TaxationWithRoot.Resource
	 * @generated
	 */
	public Adapter createResourceAdapter() {
		return null;
	}

	/**
	 * Creates a new adapter for the default case.
	 * <!-- begin-user-doc -->
	 * This default implementation returns null.
	 * <!-- end-user-doc -->
	 * @return the new adapter.
	 * @generated
	 */
	public Adapter createEObjectAdapter() {
		return null;
	}

} //TaxationWithRootAdapterFactory