aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Income_Tax.java
blob: fd142d1f0a97bd699951db6eba5a4e508175dbb8 (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
/**
 */
package TaxationWithRoot;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Income Tax</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link TaxationWithRoot.Income_Tax#getTaxPayer <em>Tax Payer</em>}</li>
 *   <li>{@link TaxationWithRoot.Income_Tax#getTax_amount <em>Tax amount</em>}</li>
 *   <li>{@link TaxationWithRoot.Income_Tax#getTax_year <em>Tax year</em>}</li>
 *   <li>{@link TaxationWithRoot.Income_Tax#getId6 <em>Id6</em>}</li>
 * </ul>
 *
 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax()
 * @model
 * @generated
 */
public interface Income_Tax extends EObject {
	/**
	 * Returns the value of the '<em><b>Tax Payer</b></em>' reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Tax Payer</em>' reference.
	 * @see #setTaxPayer(Tax_Payer)
	 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax_TaxPayer()
	 * @model required="true"
	 * @generated
	 */
	Tax_Payer getTaxPayer();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Income_Tax#getTaxPayer <em>Tax Payer</em>}' reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Tax Payer</em>' reference.
	 * @see #getTaxPayer()
	 * @generated
	 */
	void setTaxPayer(Tax_Payer value);

	/**
	 * Returns the value of the '<em><b>Tax amount</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Tax amount</em>' attribute.
	 * @see #setTax_amount(double)
	 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax_Tax_amount()
	 * @model required="true"
	 * @generated
	 */
	double getTax_amount();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Income_Tax#getTax_amount <em>Tax amount</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Tax amount</em>' attribute.
	 * @see #getTax_amount()
	 * @generated
	 */
	void setTax_amount(double value);

	/**
	 * Returns the value of the '<em><b>Tax year</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Tax year</em>' attribute.
	 * @see #setTax_year(int)
	 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax_Tax_year()
	 * @model required="true"
	 * @generated
	 */
	int getTax_year();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Income_Tax#getTax_year <em>Tax year</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Tax year</em>' attribute.
	 * @see #getTax_year()
	 * @generated
	 */
	void setTax_year(int value);

	/**
	 * Returns the value of the '<em><b>Id6</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Id6</em>' attribute.
	 * @see #setId6(String)
	 * @see TaxationWithRoot.TaxationWithRootPackage#getIncome_Tax_Id6()
	 * @model id="true" required="true" ordered="false"
	 * @generated
	 */
	String getId6();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Income_Tax#getId6 <em>Id6</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Id6</em>' attribute.
	 * @see #getId6()
	 * @generated
	 */
	void setId6(String value);

} // Income_Tax