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

import org.eclipse.emf.common.util.EList;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Tax Payer</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link TaxationWithRoot.Tax_Payer#getDependents <em>Dependents</em>}</li>
 *   <li>{@link TaxationWithRoot.Tax_Payer#getFrom_agent <em>From agent</em>}</li>
 *   <li>{@link TaxationWithRoot.Tax_Payer#getIncomes <em>Incomes</em>}</li>
 *   <li>{@link TaxationWithRoot.Tax_Payer#getFrom_law <em>From law</em>}</li>
 * </ul>
 *
 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Payer()
 * @model abstract="true"
 *        annotation="duplicates"
 * @generated
 */
public interface Tax_Payer extends Physical_Person, Tax_Case {
	/**
	 * Returns the value of the '<em><b>Dependents</b></em>' containment reference list.
	 * The list contents are of type {@link TaxationWithRoot.Dependent}.
	 * It is bidirectional and its opposite is '{@link TaxationWithRoot.Dependent#getResponsible_person <em>Responsible person</em>}'.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Dependents</em>' containment reference list.
	 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Payer_Dependents()
	 * @see TaxationWithRoot.Dependent#getResponsible_person
	 * @model opposite="responsible_person" containment="true" upper="6" ordered="false"
	 * @generated
	 */
	EList<Dependent> getDependents();

	/**
	 * Returns the value of the '<em><b>From agent</b></em>' containment reference.
	 * It is bidirectional and its opposite is '{@link TaxationWithRoot.FromAgent#getTaxPayer <em>Tax Payer</em>}'.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>From agent</em>' containment reference.
	 * @see #setFrom_agent(FromAgent)
	 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Payer_From_agent()
	 * @see TaxationWithRoot.FromAgent#getTaxPayer
	 * @model opposite="taxPayer" containment="true" required="true"
	 * @generated
	 */
	FromAgent getFrom_agent();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Tax_Payer#getFrom_agent <em>From agent</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>From agent</em>' containment reference.
	 * @see #getFrom_agent()
	 * @generated
	 */
	void setFrom_agent(FromAgent value);

	/**
	 * Returns the value of the '<em><b>Incomes</b></em>' containment reference list.
	 * The list contents are of type {@link TaxationWithRoot.Income}.
	 * It is bidirectional and its opposite is '{@link TaxationWithRoot.Income#getTaxPayer <em>Tax Payer</em>}'.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Incomes</em>' containment reference list.
	 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Payer_Incomes()
	 * @see TaxationWithRoot.Income#getTaxPayer
	 * @model opposite="taxPayer" containment="true" required="true" ordered="false"
	 * @generated
	 */
	EList<Income> getIncomes();

	/**
	 * Returns the value of the '<em><b>From law</b></em>' containment reference.
	 * It is bidirectional and its opposite is '{@link TaxationWithRoot.FromLaw#getTaxPayer <em>Tax Payer</em>}'.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>From law</em>' containment reference.
	 * @see #setFrom_law(FromLaw)
	 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Payer_From_law()
	 * @see TaxationWithRoot.FromLaw#getTaxPayer
	 * @model opposite="taxPayer" containment="true" required="true"
	 * @generated
	 */
	FromLaw getFrom_law();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Tax_Payer#getFrom_law <em>From law</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>From law</em>' containment reference.
	 * @see #getFrom_law()
	 * @generated
	 */
	void setFrom_law(FromLaw value);

} // Tax_Payer