aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Address.java
blob: 9df3f6539863b9960ffce903d8fab1aaeb7223b0 (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
/**
 */
package TaxationWithRoot;

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

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Address</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link TaxationWithRoot.Address#getCountry <em>Country</em>}</li>
 *   <li>{@link TaxationWithRoot.Address#getStreet <em>Street</em>}</li>
 *   <li>{@link TaxationWithRoot.Address#getZipCode <em>Zip Code</em>}</li>
 *   <li>{@link TaxationWithRoot.Address#getCity <em>City</em>}</li>
 *   <li>{@link TaxationWithRoot.Address#getId2 <em>Id2</em>}</li>
 *   <li>{@link TaxationWithRoot.Address#getTaxPayer <em>Tax Payer</em>}</li>
 * </ul>
 *
 * @see TaxationWithRoot.TaxationPackage#getAddress()
 * @model
 * @generated
 */
public interface Address extends Root {
	/**
	 * Returns the value of the '<em><b>Country</b></em>' attribute.
	 * The default value is <code>"ZZ"</code>.
	 * The literals are from the enumeration {@link TaxationWithRoot.Country}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Country</em>' attribute.
	 * @see TaxationWithRoot.Country
	 * @see #setCountry(Country)
	 * @see TaxationWithRoot.TaxationPackage#getAddress_Country()
	 * @model default="ZZ" required="true"
	 * @generated
	 */
	Country getCountry();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Address#getCountry <em>Country</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Country</em>' attribute.
	 * @see TaxationWithRoot.Country
	 * @see #getCountry()
	 * @generated
	 */
	void setCountry(Country value);

	/**
	 * Returns the value of the '<em><b>Street</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Street</em>' attribute.
	 * @see #setStreet(String)
	 * @see TaxationWithRoot.TaxationPackage#getAddress_Street()
	 * @model required="true"
	 * @generated
	 */
	String getStreet();

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

	/**
	 * Returns the value of the '<em><b>Zip Code</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Zip Code</em>' attribute.
	 * @see #setZipCode(String)
	 * @see TaxationWithRoot.TaxationPackage#getAddress_ZipCode()
	 * @model required="true"
	 * @generated
	 */
	String getZipCode();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Address#getZipCode <em>Zip Code</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Zip Code</em>' attribute.
	 * @see #getZipCode()
	 * @generated
	 */
	void setZipCode(String value);

	/**
	 * Returns the value of the '<em><b>City</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>City</em>' attribute.
	 * @see #setCity(String)
	 * @see TaxationWithRoot.TaxationPackage#getAddress_City()
	 * @model required="true"
	 * @generated
	 */
	String getCity();

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

	/**
	 * Returns the value of the '<em><b>Id2</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Id2</em>' attribute.
	 * @see #setId2(String)
	 * @see TaxationWithRoot.TaxationPackage#getAddress_Id2()
	 * @model id="true" required="true" ordered="false"
	 * @generated
	 */
	String getId2();

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

	/**
	 * Returns the value of the '<em><b>Tax Payer</b></em>' reference list.
	 * The list contents are of type {@link TaxationWithRoot.Physical_Person}.
	 * It is bidirectional and its opposite is '{@link TaxationWithRoot.Physical_Person#getAddresses <em>Addresses</em>}'.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Tax Payer</em>' reference list.
	 * @see TaxationWithRoot.TaxationPackage#getAddress_TaxPayer()
	 * @see TaxationWithRoot.Physical_Person#getAddresses
	 * @model opposite="addresses" ordered="false"
	 * @generated
	 */
	EList<Physical_Person> getTaxPayer();

} // Address