aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Household.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Household.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Household.java86
1 files changed, 86 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Household.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Household.java
new file mode 100644
index 00000000..5aaed441
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Household.java
@@ -0,0 +1,86 @@
1/**
2 */
3package Taxation;
4
5import org.eclipse.emf.common.util.EList;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>Household</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * </p>
15 * <ul>
16 * <li>{@link Taxation.Household#getParents <em>Parents</em>}</li>
17 * <li>{@link Taxation.Household#getId1 <em>Id1</em>}</li>
18 * <li>{@link Taxation.Household#getChildren <em>Children</em>}</li>
19 * </ul>
20 *
21 * @see Taxation.TaxationPackage#getHousehold()
22 * @model
23 * @generated
24 */
25public interface Household extends Tax_Case {
26 /**
27 * Returns the value of the '<em><b>Parents</b></em>' containment reference.
28 * It is bidirectional and its opposite is '{@link Taxation.Legal_Union_Record#getHousehold <em>Household</em>}'.
29 * <!-- begin-user-doc -->
30 * <!-- end-user-doc -->
31 * @return the value of the '<em>Parents</em>' containment reference.
32 * @see #setParents(Legal_Union_Record)
33 * @see Taxation.TaxationPackage#getHousehold_Parents()
34 * @see Taxation.Legal_Union_Record#getHousehold
35 * @model opposite="household" containment="true" required="true" ordered="false"
36 * @generated
37 */
38 Legal_Union_Record getParents();
39
40 /**
41 * Sets the value of the '{@link Taxation.Household#getParents <em>Parents</em>}' containment reference.
42 * <!-- begin-user-doc -->
43 * <!-- end-user-doc -->
44 * @param value the new value of the '<em>Parents</em>' containment reference.
45 * @see #getParents()
46 * @generated
47 */
48 void setParents(Legal_Union_Record value);
49
50 /**
51 * Returns the value of the '<em><b>Id1</b></em>' attribute.
52 * <!-- begin-user-doc -->
53 * <!-- end-user-doc -->
54 * @return the value of the '<em>Id1</em>' attribute.
55 * @see #setId1(String)
56 * @see Taxation.TaxationPackage#getHousehold_Id1()
57 * @model id="true" required="true" ordered="false"
58 * @generated
59 */
60 String getId1();
61
62 /**
63 * Sets the value of the '{@link Taxation.Household#getId1 <em>Id1</em>}' attribute.
64 * <!-- begin-user-doc -->
65 * <!-- end-user-doc -->
66 * @param value the new value of the '<em>Id1</em>' attribute.
67 * @see #getId1()
68 * @generated
69 */
70 void setId1(String value);
71
72 /**
73 * Returns the value of the '<em><b>Children</b></em>' containment reference list.
74 * The list contents are of type {@link Taxation.Dependent}.
75 * It is bidirectional and its opposite is '{@link Taxation.Dependent#getHousehold <em>Household</em>}'.
76 * <!-- begin-user-doc -->
77 * <!-- end-user-doc -->
78 * @return the value of the '<em>Children</em>' containment reference list.
79 * @see Taxation.TaxationPackage#getHousehold_Children()
80 * @see Taxation.Dependent#getHousehold
81 * @model opposite="household" containment="true" ordered="false"
82 * @generated
83 */
84 EList<Dependent> getChildren();
85
86} // Household