aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Legal_Union_Record.java
blob: 47a5d7660d04e8340ff26733bd476fdda7b34232 (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
/**
 */
package Taxation;

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

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Legal Union Record</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link Taxation.Legal_Union_Record#getStart_year <em>Start year</em>}</li>
 *   <li>{@link Taxation.Legal_Union_Record#getEnd_year <em>End year</em>}</li>
 *   <li>{@link Taxation.Legal_Union_Record#getSeparation_cause <em>Separation cause</em>}</li>
 *   <li>{@link Taxation.Legal_Union_Record#getIndividual_A <em>Individual A</em>}</li>
 *   <li>{@link Taxation.Legal_Union_Record#getIndividual_B <em>Individual B</em>}</li>
 *   <li>{@link Taxation.Legal_Union_Record#getProperties <em>Properties</em>}</li>
 *   <li>{@link Taxation.Legal_Union_Record#isMutual_agreement <em>Mutual agreement</em>}</li>
 *   <li>{@link Taxation.Legal_Union_Record#getId9 <em>Id9</em>}</li>
 *   <li>{@link Taxation.Legal_Union_Record#getHousehold <em>Household</em>}</li>
 * </ul>
 *
 * @see Taxation.TaxationPackage#getLegal_Union_Record()
 * @model abstract="true"
 * @generated
 */
public interface Legal_Union_Record extends EObject {
	/**
	 * Returns the value of the '<em><b>Start year</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Start year</em>' attribute.
	 * @see #setStart_year(int)
	 * @see Taxation.TaxationPackage#getLegal_Union_Record_Start_year()
	 * @model required="true"
	 * @generated
	 */
	int getStart_year();

	/**
	 * Sets the value of the '{@link Taxation.Legal_Union_Record#getStart_year <em>Start year</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Start year</em>' attribute.
	 * @see #getStart_year()
	 * @generated
	 */
	void setStart_year(int value);

	/**
	 * Returns the value of the '<em><b>End year</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>End year</em>' attribute.
	 * @see #setEnd_year(int)
	 * @see Taxation.TaxationPackage#getLegal_Union_Record_End_year()
	 * @model required="true"
	 * @generated
	 */
	int getEnd_year();

	/**
	 * Sets the value of the '{@link Taxation.Legal_Union_Record#getEnd_year <em>End year</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>End year</em>' attribute.
	 * @see #getEnd_year()
	 * @generated
	 */
	void setEnd_year(int value);

	/**
	 * Returns the value of the '<em><b>Separation cause</b></em>' attribute.
	 * The literals are from the enumeration {@link Taxation.Separation_Causes}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Separation cause</em>' attribute.
	 * @see Taxation.Separation_Causes
	 * @see #setSeparation_cause(Separation_Causes)
	 * @see Taxation.TaxationPackage#getLegal_Union_Record_Separation_cause()
	 * @model required="true" ordered="false"
	 * @generated
	 */
	Separation_Causes getSeparation_cause();

	/**
	 * Sets the value of the '{@link Taxation.Legal_Union_Record#getSeparation_cause <em>Separation cause</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Separation cause</em>' attribute.
	 * @see Taxation.Separation_Causes
	 * @see #getSeparation_cause()
	 * @generated
	 */
	void setSeparation_cause(Separation_Causes value);

	/**
	 * Returns the value of the '<em><b>Individual A</b></em>' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Individual A</em>' containment reference.
	 * @see #setIndividual_A(Physical_Person)
	 * @see Taxation.TaxationPackage#getLegal_Union_Record_Individual_A()
	 * @model containment="true" required="true" ordered="false"
	 *        annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='legal_union_A'"
	 * @generated
	 */
	Physical_Person getIndividual_A();

	/**
	 * Sets the value of the '{@link Taxation.Legal_Union_Record#getIndividual_A <em>Individual A</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Individual A</em>' containment reference.
	 * @see #getIndividual_A()
	 * @generated
	 */
	void setIndividual_A(Physical_Person value);

	/**
	 * Returns the value of the '<em><b>Individual B</b></em>' containment reference list.
	 * The list contents are of type {@link Taxation.Physical_Person}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Individual B</em>' containment reference list.
	 * @see Taxation.TaxationPackage#getLegal_Union_Record_Individual_B()
	 * @model containment="true" required="true" ordered="false"
	 *        annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='legal_union_B'"
	 * @generated
	 */
	EList<Physical_Person> getIndividual_B();

	/**
	 * Returns the value of the '<em><b>Properties</b></em>' containment reference list.
	 * The list contents are of type {@link Taxation.Tax_Property}.
	 * It is bidirectional and its opposite is '{@link Taxation.Tax_Property#getUnion_record <em>Union record</em>}'.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Properties</em>' containment reference list.
	 * @see Taxation.TaxationPackage#getLegal_Union_Record_Properties()
	 * @see Taxation.Tax_Property#getUnion_record
	 * @model opposite="union_record" containment="true" required="true" ordered="false"
	 * @generated
	 */
	EList<Tax_Property> getProperties();

	/**
	 * Returns the value of the '<em><b>Mutual agreement</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Mutual agreement</em>' attribute.
	 * @see #setMutual_agreement(boolean)
	 * @see Taxation.TaxationPackage#getLegal_Union_Record_Mutual_agreement()
	 * @model required="true" ordered="false"
	 * @generated
	 */
	boolean isMutual_agreement();

	/**
	 * Sets the value of the '{@link Taxation.Legal_Union_Record#isMutual_agreement <em>Mutual agreement</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Mutual agreement</em>' attribute.
	 * @see #isMutual_agreement()
	 * @generated
	 */
	void setMutual_agreement(boolean value);

	/**
	 * Returns the value of the '<em><b>Id9</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Id9</em>' attribute.
	 * @see #setId9(String)
	 * @see Taxation.TaxationPackage#getLegal_Union_Record_Id9()
	 * @model id="true" required="true" ordered="false"
	 * @generated
	 */
	String getId9();

	/**
	 * Sets the value of the '{@link Taxation.Legal_Union_Record#getId9 <em>Id9</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Id9</em>' attribute.
	 * @see #getId9()
	 * @generated
	 */
	void setId9(String value);

	/**
	 * Returns the value of the '<em><b>Household</b></em>' container reference.
	 * It is bidirectional and its opposite is '{@link Taxation.Household#getParents <em>Parents</em>}'.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Household</em>' container reference.
	 * @see #setHousehold(Household)
	 * @see Taxation.TaxationPackage#getLegal_Union_Record_Household()
	 * @see Taxation.Household#getParents
	 * @model opposite="parents" required="true" transient="false" ordered="false"
	 * @generated
	 */
	Household getHousehold();

	/**
	 * Sets the value of the '{@link Taxation.Legal_Union_Record#getHousehold <em>Household</em>}' container reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Household</em>' container reference.
	 * @see #getHousehold()
	 * @generated
	 */
	void setHousehold(Household value);

} // Legal_Union_Record