aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Income_Tax.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Income_Tax.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Income_Tax.java115
1 files changed, 115 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Income_Tax.java b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Income_Tax.java
new file mode 100644
index 00000000..fd142d1f
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Income_Tax.java
@@ -0,0 +1,115 @@
1/**
2 */
3package TaxationWithRoot;
4
5import org.eclipse.emf.ecore.EObject;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>Income Tax</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * </p>
15 * <ul>
16 * <li>{@link TaxationWithRoot.Income_Tax#getTaxPayer <em>Tax Payer</em>}</li>
17 * <li>{@link TaxationWithRoot.Income_Tax#getTax_amount <em>Tax amount</em>}</li>
18 * <li>{@link TaxationWithRoot.Income_Tax#getTax_year <em>Tax year</em>}</li>
19 * <li>{@link TaxationWithRoot.Income_Tax#getId6 <em>Id6</em>}</li>
20 * </ul>
21 *
22 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax()
23 * @model
24 * @generated
25 */
26public interface Income_Tax extends EObject {
27 /**
28 * Returns the value of the '<em><b>Tax Payer</b></em>' reference.
29 * <!-- begin-user-doc -->
30 * <!-- end-user-doc -->
31 * @return the value of the '<em>Tax Payer</em>' reference.
32 * @see #setTaxPayer(Tax_Payer)
33 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax_TaxPayer()
34 * @model required="true"
35 * @generated
36 */
37 Tax_Payer getTaxPayer();
38
39 /**
40 * Sets the value of the '{@link TaxationWithRoot.Income_Tax#getTaxPayer <em>Tax Payer</em>}' reference.
41 * <!-- begin-user-doc -->
42 * <!-- end-user-doc -->
43 * @param value the new value of the '<em>Tax Payer</em>' reference.
44 * @see #getTaxPayer()
45 * @generated
46 */
47 void setTaxPayer(Tax_Payer value);
48
49 /**
50 * Returns the value of the '<em><b>Tax amount</b></em>' attribute.
51 * <!-- begin-user-doc -->
52 * <!-- end-user-doc -->
53 * @return the value of the '<em>Tax amount</em>' attribute.
54 * @see #setTax_amount(double)
55 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax_Tax_amount()
56 * @model required="true"
57 * @generated
58 */
59 double getTax_amount();
60
61 /**
62 * Sets the value of the '{@link TaxationWithRoot.Income_Tax#getTax_amount <em>Tax amount</em>}' attribute.
63 * <!-- begin-user-doc -->
64 * <!-- end-user-doc -->
65 * @param value the new value of the '<em>Tax amount</em>' attribute.
66 * @see #getTax_amount()
67 * @generated
68 */
69 void setTax_amount(double value);
70
71 /**
72 * Returns the value of the '<em><b>Tax year</b></em>' attribute.
73 * <!-- begin-user-doc -->
74 * <!-- end-user-doc -->
75 * @return the value of the '<em>Tax year</em>' attribute.
76 * @see #setTax_year(int)
77 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax_Tax_year()
78 * @model required="true"
79 * @generated
80 */
81 int getTax_year();
82
83 /**
84 * Sets the value of the '{@link TaxationWithRoot.Income_Tax#getTax_year <em>Tax year</em>}' attribute.
85 * <!-- begin-user-doc -->
86 * <!-- end-user-doc -->
87 * @param value the new value of the '<em>Tax year</em>' attribute.
88 * @see #getTax_year()
89 * @generated
90 */
91 void setTax_year(int value);
92
93 /**
94 * Returns the value of the '<em><b>Id6</b></em>' attribute.
95 * <!-- begin-user-doc -->
96 * <!-- end-user-doc -->
97 * @return the value of the '<em>Id6</em>' attribute.
98 * @see #setId6(String)
99 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax_Id6()
100 * @model id="true" required="true" ordered="false"
101 * @generated
102 */
103 String getId6();
104
105 /**
106 * Sets the value of the '{@link TaxationWithRoot.Income_Tax#getId6 <em>Id6</em>}' attribute.
107 * <!-- begin-user-doc -->
108 * <!-- end-user-doc -->
109 * @param value the new value of the '<em>Id6</em>' attribute.
110 * @see #getId6()
111 * @generated
112 */
113 void setId6(String value);
114
115} // Income_Tax