aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Address.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Address.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Address.java157
1 files changed, 157 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Address.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Address.java
new file mode 100644
index 00000000..9df3f653
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Address.java
@@ -0,0 +1,157 @@
1/**
2 */
3package TaxationWithRoot;
4
5import org.eclipse.emf.common.util.EList;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>Address</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * </p>
15 * <ul>
16 * <li>{@link TaxationWithRoot.Address#getCountry <em>Country</em>}</li>
17 * <li>{@link TaxationWithRoot.Address#getStreet <em>Street</em>}</li>
18 * <li>{@link TaxationWithRoot.Address#getZipCode <em>Zip Code</em>}</li>
19 * <li>{@link TaxationWithRoot.Address#getCity <em>City</em>}</li>
20 * <li>{@link TaxationWithRoot.Address#getId2 <em>Id2</em>}</li>
21 * <li>{@link TaxationWithRoot.Address#getTaxPayer <em>Tax Payer</em>}</li>
22 * </ul>
23 *
24 * @see TaxationWithRoot.TaxationPackage#getAddress()
25 * @model
26 * @generated
27 */
28public interface Address extends Root {
29 /**
30 * Returns the value of the '<em><b>Country</b></em>' attribute.
31 * The default value is <code>"ZZ"</code>.
32 * The literals are from the enumeration {@link TaxationWithRoot.Country}.
33 * <!-- begin-user-doc -->
34 * <!-- end-user-doc -->
35 * @return the value of the '<em>Country</em>' attribute.
36 * @see TaxationWithRoot.Country
37 * @see #setCountry(Country)
38 * @see TaxationWithRoot.TaxationPackage#getAddress_Country()
39 * @model default="ZZ" required="true"
40 * @generated
41 */
42 Country getCountry();
43
44 /**
45 * Sets the value of the '{@link TaxationWithRoot.Address#getCountry <em>Country</em>}' attribute.
46 * <!-- begin-user-doc -->
47 * <!-- end-user-doc -->
48 * @param value the new value of the '<em>Country</em>' attribute.
49 * @see TaxationWithRoot.Country
50 * @see #getCountry()
51 * @generated
52 */
53 void setCountry(Country value);
54
55 /**
56 * Returns the value of the '<em><b>Street</b></em>' attribute.
57 * <!-- begin-user-doc -->
58 * <!-- end-user-doc -->
59 * @return the value of the '<em>Street</em>' attribute.
60 * @see #setStreet(String)
61 * @see TaxationWithRoot.TaxationPackage#getAddress_Street()
62 * @model required="true"
63 * @generated
64 */
65 String getStreet();
66
67 /**
68 * Sets the value of the '{@link TaxationWithRoot.Address#getStreet <em>Street</em>}' attribute.
69 * <!-- begin-user-doc -->
70 * <!-- end-user-doc -->
71 * @param value the new value of the '<em>Street</em>' attribute.
72 * @see #getStreet()
73 * @generated
74 */
75 void setStreet(String value);
76
77 /**
78 * Returns the value of the '<em><b>Zip Code</b></em>' attribute.
79 * <!-- begin-user-doc -->
80 * <!-- end-user-doc -->
81 * @return the value of the '<em>Zip Code</em>' attribute.
82 * @see #setZipCode(String)
83 * @see TaxationWithRoot.TaxationPackage#getAddress_ZipCode()
84 * @model required="true"
85 * @generated
86 */
87 String getZipCode();
88
89 /**
90 * Sets the value of the '{@link TaxationWithRoot.Address#getZipCode <em>Zip Code</em>}' attribute.
91 * <!-- begin-user-doc -->
92 * <!-- end-user-doc -->
93 * @param value the new value of the '<em>Zip Code</em>' attribute.
94 * @see #getZipCode()
95 * @generated
96 */
97 void setZipCode(String value);
98
99 /**
100 * Returns the value of the '<em><b>City</b></em>' attribute.
101 * <!-- begin-user-doc -->
102 * <!-- end-user-doc -->
103 * @return the value of the '<em>City</em>' attribute.
104 * @see #setCity(String)
105 * @see TaxationWithRoot.TaxationPackage#getAddress_City()
106 * @model required="true"
107 * @generated
108 */
109 String getCity();
110
111 /**
112 * Sets the value of the '{@link TaxationWithRoot.Address#getCity <em>City</em>}' attribute.
113 * <!-- begin-user-doc -->
114 * <!-- end-user-doc -->
115 * @param value the new value of the '<em>City</em>' attribute.
116 * @see #getCity()
117 * @generated
118 */
119 void setCity(String value);
120
121 /**
122 * Returns the value of the '<em><b>Id2</b></em>' attribute.
123 * <!-- begin-user-doc -->
124 * <!-- end-user-doc -->
125 * @return the value of the '<em>Id2</em>' attribute.
126 * @see #setId2(String)
127 * @see TaxationWithRoot.TaxationPackage#getAddress_Id2()
128 * @model id="true" required="true" ordered="false"
129 * @generated
130 */
131 String getId2();
132
133 /**
134 * Sets the value of the '{@link TaxationWithRoot.Address#getId2 <em>Id2</em>}' attribute.
135 * <!-- begin-user-doc -->
136 * <!-- end-user-doc -->
137 * @param value the new value of the '<em>Id2</em>' attribute.
138 * @see #getId2()
139 * @generated
140 */
141 void setId2(String value);
142
143 /**
144 * Returns the value of the '<em><b>Tax Payer</b></em>' reference list.
145 * The list contents are of type {@link TaxationWithRoot.Physical_Person}.
146 * It is bidirectional and its opposite is '{@link TaxationWithRoot.Physical_Person#getAddresses <em>Addresses</em>}'.
147 * <!-- begin-user-doc -->
148 * <!-- end-user-doc -->
149 * @return the value of the '<em>Tax Payer</em>' reference list.
150 * @see TaxationWithRoot.TaxationPackage#getAddress_TaxPayer()
151 * @see TaxationWithRoot.Physical_Person#getAddresses
152 * @model opposite="addresses" ordered="false"
153 * @generated
154 */
155 EList<Physical_Person> getTaxPayer();
156
157} // Address