aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation')
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/FO.java1
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java1
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Tax_Card_Type.java209
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Type_of_Rate.java209
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/FOImpl.java1
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/Loss_CarryforwardImpl.java1
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/TaxationPackageImpl.java1
7 files changed, 3 insertions, 420 deletions
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/FO.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/FO.java
index 420270b1..e6ebcb67 100644
--- a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/FO.java
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/FO.java
@@ -14,5 +14,4 @@ package Taxation;
14 * @generated 14 * @generated
15 */ 15 */
16public interface FO extends Professional_Expenses_Deduction { 16public interface FO extends Professional_Expenses_Deduction {
17
18} // FO 17} // FO
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java
index a5acbe85..b7a8ac32 100644
--- a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java
@@ -14,5 +14,4 @@ package Taxation;
14 * @generated 14 * @generated
15 */ 15 */
16public interface Loss_Carryforward extends Special_Expense_DS { 16public interface Loss_Carryforward extends Special_Expense_DS {
17
18} // Loss_Carryforward 17} // Loss_Carryforward
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Tax_Card_Type.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Tax_Card_Type.java
deleted file mode 100644
index 442c1b65..00000000
--- a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Tax_Card_Type.java
+++ /dev/null
@@ -1,209 +0,0 @@
1/**
2 */
3package Taxation;
4
5import java.util.Arrays;
6import java.util.Collections;
7import java.util.List;
8
9import org.eclipse.emf.common.util.Enumerator;
10
11/**
12 * <!-- begin-user-doc -->
13 * A representation of the literals of the enumeration '<em><b>Tax Card Type</b></em>',
14 * and utility methods for working with them.
15 * <!-- end-user-doc -->
16 * @see Taxation.TaxationPackage#getTax_Card_Type()
17 * @model
18 * @generated
19 */
20public enum Tax_Card_Type implements Enumerator {
21 /**
22 * The '<em><b>Principal</b></em>' literal object.
23 * <!-- begin-user-doc -->
24 * <!-- end-user-doc -->
25 * @see #PRINCIPAL_VALUE
26 * @generated
27 * @ordered
28 */
29 PRINCIPAL(0, "Principal", "Principal"),
30
31 /**
32 * The '<em><b>Additional</b></em>' literal object.
33 * <!-- begin-user-doc -->
34 * <!-- end-user-doc -->
35 * @see #ADDITIONAL_VALUE
36 * @generated
37 * @ordered
38 */
39 ADDITIONAL(1, "Additional", "Additional");
40
41 /**
42 * The '<em><b>Principal</b></em>' literal value.
43 * <!-- begin-user-doc -->
44 * <!-- end-user-doc -->
45 * @see #PRINCIPAL
46 * @model name="Principal"
47 * @generated
48 * @ordered
49 */
50 public static final int PRINCIPAL_VALUE = 0;
51
52 /**
53 * The '<em><b>Additional</b></em>' literal value.
54 * <!-- begin-user-doc -->
55 * <!-- end-user-doc -->
56 * @see #ADDITIONAL
57 * @model name="Additional"
58 * @generated
59 * @ordered
60 */
61 public static final int ADDITIONAL_VALUE = 1;
62
63 /**
64 * An array of all the '<em><b>Tax Card Type</b></em>' enumerators.
65 * <!-- begin-user-doc -->
66 * <!-- end-user-doc -->
67 * @generated
68 */
69 private static final Tax_Card_Type[] VALUES_ARRAY =
70 new Tax_Card_Type[] {
71 PRINCIPAL,
72 ADDITIONAL,
73 };
74
75 /**
76 * A public read-only list of all the '<em><b>Tax Card Type</b></em>' enumerators.
77 * <!-- begin-user-doc -->
78 * <!-- end-user-doc -->
79 * @generated
80 */
81 public static final List<Tax_Card_Type> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
82
83 /**
84 * Returns the '<em><b>Tax Card Type</b></em>' literal with the specified literal value.
85 * <!-- begin-user-doc -->
86 * <!-- end-user-doc -->
87 * @param literal the literal.
88 * @return the matching enumerator or <code>null</code>.
89 * @generated
90 */
91 public static Tax_Card_Type get(String literal) {
92 for (int i = 0; i < VALUES_ARRAY.length; ++i) {
93 Tax_Card_Type result = VALUES_ARRAY[i];
94 if (result.toString().equals(literal)) {
95 return result;
96 }
97 }
98 return null;
99 }
100
101 /**
102 * Returns the '<em><b>Tax Card Type</b></em>' literal with the specified name.
103 * <!-- begin-user-doc -->
104 * <!-- end-user-doc -->
105 * @param name the name.
106 * @return the matching enumerator or <code>null</code>.
107 * @generated
108 */
109 public static Tax_Card_Type getByName(String name) {
110 for (int i = 0; i < VALUES_ARRAY.length; ++i) {
111 Tax_Card_Type result = VALUES_ARRAY[i];
112 if (result.getName().equals(name)) {
113 return result;
114 }
115 }
116 return null;
117 }
118
119 /**
120 * Returns the '<em><b>Tax Card Type</b></em>' literal with the specified integer value.
121 * <!-- begin-user-doc -->
122 * <!-- end-user-doc -->
123 * @param value the integer value.
124 * @return the matching enumerator or <code>null</code>.
125 * @generated
126 */
127 public static Tax_Card_Type get(int value) {
128 switch (value) {
129 case PRINCIPAL_VALUE: return PRINCIPAL;
130 case ADDITIONAL_VALUE: return ADDITIONAL;
131 }
132 return null;
133 }
134
135 /**
136 * <!-- begin-user-doc -->
137 * <!-- end-user-doc -->
138 * @generated
139 */
140 private final int value;
141
142 /**
143 * <!-- begin-user-doc -->
144 * <!-- end-user-doc -->
145 * @generated
146 */
147 private final String name;
148
149 /**
150 * <!-- begin-user-doc -->
151 * <!-- end-user-doc -->
152 * @generated
153 */
154 private final String literal;
155
156 /**
157 * Only this class can construct instances.
158 * <!-- begin-user-doc -->
159 * <!-- end-user-doc -->
160 * @generated
161 */
162 private Tax_Card_Type(int value, String name, String literal) {
163 this.value = value;
164 this.name = name;
165 this.literal = literal;
166 }
167
168 /**
169 * <!-- begin-user-doc -->
170 * <!-- end-user-doc -->
171 * @generated
172 */
173 @Override
174 public int getValue() {
175 return value;
176 }
177
178 /**
179 * <!-- begin-user-doc -->
180 * <!-- end-user-doc -->
181 * @generated
182 */
183 @Override
184 public String getName() {
185 return name;
186 }
187
188 /**
189 * <!-- begin-user-doc -->
190 * <!-- end-user-doc -->
191 * @generated
192 */
193 @Override
194 public String getLiteral() {
195 return literal;
196 }
197
198 /**
199 * Returns the literal value of the enumerator, which is its string representation.
200 * <!-- begin-user-doc -->
201 * <!-- end-user-doc -->
202 * @generated
203 */
204 @Override
205 public String toString() {
206 return literal;
207 }
208
209} //Tax_Card_Type
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Type_of_Rate.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Type_of_Rate.java
deleted file mode 100644
index 4e21ec74..00000000
--- a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Type_of_Rate.java
+++ /dev/null
@@ -1,209 +0,0 @@
1/**
2 */
3package Taxation;
4
5import java.util.Arrays;
6import java.util.Collections;
7import java.util.List;
8
9import org.eclipse.emf.common.util.Enumerator;
10
11/**
12 * <!-- begin-user-doc -->
13 * A representation of the literals of the enumeration '<em><b>Type of Rate</b></em>',
14 * and utility methods for working with them.
15 * <!-- end-user-doc -->
16 * @see Taxation.TaxationPackage#getType_of_Rate()
17 * @model
18 * @generated
19 */
20public enum Type_of_Rate implements Enumerator {
21 /**
22 * The '<em><b>REGULAR</b></em>' literal object.
23 * <!-- begin-user-doc -->
24 * <!-- end-user-doc -->
25 * @see #REGULAR_VALUE
26 * @generated
27 * @ordered
28 */
29 REGULAR(0, "REGULAR", "REGULAR"),
30
31 /**
32 * The '<em><b>REAL COST</b></em>' literal object.
33 * <!-- begin-user-doc -->
34 * <!-- end-user-doc -->
35 * @see #REAL_COST_VALUE
36 * @generated
37 * @ordered
38 */
39 REAL_COST(1, "REAL_COST", "REAL_COST");
40
41 /**
42 * The '<em><b>REGULAR</b></em>' literal value.
43 * <!-- begin-user-doc -->
44 * <!-- end-user-doc -->
45 * @see #REGULAR
46 * @model
47 * @generated
48 * @ordered
49 */
50 public static final int REGULAR_VALUE = 0;
51
52 /**
53 * The '<em><b>REAL COST</b></em>' literal value.
54 * <!-- begin-user-doc -->
55 * <!-- end-user-doc -->
56 * @see #REAL_COST
57 * @model
58 * @generated
59 * @ordered
60 */
61 public static final int REAL_COST_VALUE = 1;
62
63 /**
64 * An array of all the '<em><b>Type of Rate</b></em>' enumerators.
65 * <!-- begin-user-doc -->
66 * <!-- end-user-doc -->
67 * @generated
68 */
69 private static final Type_of_Rate[] VALUES_ARRAY =
70 new Type_of_Rate[] {
71 REGULAR,
72 REAL_COST,
73 };
74
75 /**
76 * A public read-only list of all the '<em><b>Type of Rate</b></em>' enumerators.
77 * <!-- begin-user-doc -->
78 * <!-- end-user-doc -->
79 * @generated
80 */
81 public static final List<Type_of_Rate> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
82
83 /**
84 * Returns the '<em><b>Type of Rate</b></em>' literal with the specified literal value.
85 * <!-- begin-user-doc -->
86 * <!-- end-user-doc -->
87 * @param literal the literal.
88 * @return the matching enumerator or <code>null</code>.
89 * @generated
90 */
91 public static Type_of_Rate get(String literal) {
92 for (int i = 0; i < VALUES_ARRAY.length; ++i) {
93 Type_of_Rate result = VALUES_ARRAY[i];
94 if (result.toString().equals(literal)) {
95 return result;
96 }
97 }
98 return null;
99 }
100
101 /**
102 * Returns the '<em><b>Type of Rate</b></em>' literal with the specified name.
103 * <!-- begin-user-doc -->
104 * <!-- end-user-doc -->
105 * @param name the name.
106 * @return the matching enumerator or <code>null</code>.
107 * @generated
108 */
109 public static Type_of_Rate getByName(String name) {
110 for (int i = 0; i < VALUES_ARRAY.length; ++i) {
111 Type_of_Rate result = VALUES_ARRAY[i];
112 if (result.getName().equals(name)) {
113 return result;
114 }
115 }
116 return null;
117 }
118
119 /**
120 * Returns the '<em><b>Type of Rate</b></em>' literal with the specified integer value.
121 * <!-- begin-user-doc -->
122 * <!-- end-user-doc -->
123 * @param value the integer value.
124 * @return the matching enumerator or <code>null</code>.
125 * @generated
126 */
127 public static Type_of_Rate get(int value) {
128 switch (value) {
129 case REGULAR_VALUE: return REGULAR;
130 case REAL_COST_VALUE: return REAL_COST;
131 }
132 return null;
133 }
134
135 /**
136 * <!-- begin-user-doc -->
137 * <!-- end-user-doc -->
138 * @generated
139 */
140 private final int value;
141
142 /**
143 * <!-- begin-user-doc -->
144 * <!-- end-user-doc -->
145 * @generated
146 */
147 private final String name;
148
149 /**
150 * <!-- begin-user-doc -->
151 * <!-- end-user-doc -->
152 * @generated
153 */
154 private final String literal;
155
156 /**
157 * Only this class can construct instances.
158 * <!-- begin-user-doc -->
159 * <!-- end-user-doc -->
160 * @generated
161 */
162 private Type_of_Rate(int value, String name, String literal) {
163 this.value = value;
164 this.name = name;
165 this.literal = literal;
166 }
167
168 /**
169 * <!-- begin-user-doc -->
170 * <!-- end-user-doc -->
171 * @generated
172 */
173 @Override
174 public int getValue() {
175 return value;
176 }
177
178 /**
179 * <!-- begin-user-doc -->
180 * <!-- end-user-doc -->
181 * @generated
182 */
183 @Override
184 public String getName() {
185 return name;
186 }
187
188 /**
189 * <!-- begin-user-doc -->
190 * <!-- end-user-doc -->
191 * @generated
192 */
193 @Override
194 public String getLiteral() {
195 return literal;
196 }
197
198 /**
199 * Returns the literal value of the enumerator, which is its string representation.
200 * <!-- begin-user-doc -->
201 * <!-- end-user-doc -->
202 * @generated
203 */
204 @Override
205 public String toString() {
206 return literal;
207 }
208
209} //Type_of_Rate
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/FOImpl.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/FOImpl.java
index 5ffe9463..74524309 100644
--- a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/FOImpl.java
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/FOImpl.java
@@ -4,6 +4,7 @@ package Taxation.impl;
4 4
5import Taxation.FO; 5import Taxation.FO;
6import Taxation.TaxationPackage; 6import Taxation.TaxationPackage;
7
7import org.eclipse.emf.ecore.EClass; 8import org.eclipse.emf.ecore.EClass;
8 9
9/** 10/**
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/Loss_CarryforwardImpl.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/Loss_CarryforwardImpl.java
index 2f578d2c..11080c03 100644
--- a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/Loss_CarryforwardImpl.java
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/Loss_CarryforwardImpl.java
@@ -4,6 +4,7 @@ package Taxation.impl;
4 4
5import Taxation.Loss_Carryforward; 5import Taxation.Loss_Carryforward;
6import Taxation.TaxationPackage; 6import Taxation.TaxationPackage;
7
7import org.eclipse.emf.ecore.EClass; 8import org.eclipse.emf.ecore.EClass;
8 9
9/** 10/**
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/TaxationPackageImpl.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/TaxationPackageImpl.java
index 56d3b3de..f3c3353c 100644
--- a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/TaxationPackageImpl.java
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/impl/TaxationPackageImpl.java
@@ -71,6 +71,7 @@ import Taxation.TaxationPackage;
71import Taxation.Town; 71import Taxation.Town;
72import Taxation.Trade_and_Business_Income; 72import Taxation.Trade_and_Business_Income;
73import Taxation.Travel_Expense_FD; 73import Taxation.Travel_Expense_FD;
74
74import org.eclipse.emf.ecore.EAttribute; 75import org.eclipse.emf.ecore.EAttribute;
75import org.eclipse.emf.ecore.EClass; 76import org.eclipse.emf.ecore.EClass;
76import org.eclipse.emf.ecore.EEnum; 77import org.eclipse.emf.ecore.EEnum;