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

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Tax Property</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link TaxationWithRoot.Tax_Property#getStarting_year <em>Starting year</em>}</li>
 *   <li>{@link TaxationWithRoot.Tax_Property#getId10 <em>Id10</em>}</li>
 *   <li>{@link TaxationWithRoot.Tax_Property#getUnion_record <em>Union record</em>}</li>
 * </ul>
 *
 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Property()
 * @model
 * @generated
 */
public interface Tax_Property extends EObject {
	/**
	 * Returns the value of the '<em><b>Starting year</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Starting year</em>' attribute.
	 * @see #setStarting_year(int)
	 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Property_Starting_year()
	 * @model required="true" ordered="false"
	 * @generated
	 */
	int getStarting_year();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Tax_Property#getStarting_year <em>Starting year</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Starting year</em>' attribute.
	 * @see #getStarting_year()
	 * @generated
	 */
	void setStarting_year(int value);

	/**
	 * Returns the value of the '<em><b>Id10</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Id10</em>' attribute.
	 * @see #setId10(String)
	 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Property_Id10()
	 * @model id="true" required="true" ordered="false"
	 * @generated
	 */
	String getId10();

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

	/**
	 * Returns the value of the '<em><b>Union record</b></em>' container reference.
	 * It is bidirectional and its opposite is '{@link TaxationWithRoot.Legal_Union_Record#getProperties <em>Properties</em>}'.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Union record</em>' container reference.
	 * @see #setUnion_record(Legal_Union_Record)
	 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Property_Union_record()
	 * @see TaxationWithRoot.Legal_Union_Record#getProperties
	 * @model opposite="properties" required="true" transient="false" ordered="false"
	 * @generated
	 */
	Legal_Union_Record getUnion_record();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.Tax_Property#getUnion_record <em>Union record</em>}' container reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Union record</em>' container reference.
	 * @see #getUnion_record()
	 * @generated
	 */
	void setUnion_record(Legal_Union_Record value);

} // Tax_Property