aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Tax_Property.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Tax_Property.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Tax_Property.java94
1 files changed, 94 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Tax_Property.java b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Tax_Property.java
new file mode 100644
index 00000000..807dde5b
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Tax_Property.java
@@ -0,0 +1,94 @@
1/**
2 */
3package TaxationWithRoot;
4
5import org.eclipse.emf.ecore.EObject;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>Tax Property</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * </p>
15 * <ul>
16 * <li>{@link TaxationWithRoot.Tax_Property#getStarting_year <em>Starting year</em>}</li>
17 * <li>{@link TaxationWithRoot.Tax_Property#getId10 <em>Id10</em>}</li>
18 * <li>{@link TaxationWithRoot.Tax_Property#getUnion_record <em>Union record</em>}</li>
19 * </ul>
20 *
21 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Property()
22 * @model
23 * @generated
24 */
25public interface Tax_Property extends EObject {
26 /**
27 * Returns the value of the '<em><b>Starting year</b></em>' attribute.
28 * <!-- begin-user-doc -->
29 * <!-- end-user-doc -->
30 * @return the value of the '<em>Starting year</em>' attribute.
31 * @see #setStarting_year(int)
32 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Property_Starting_year()
33 * @model required="true" ordered="false"
34 * @generated
35 */
36 int getStarting_year();
37
38 /**
39 * Sets the value of the '{@link TaxationWithRoot.Tax_Property#getStarting_year <em>Starting year</em>}' attribute.
40 * <!-- begin-user-doc -->
41 * <!-- end-user-doc -->
42 * @param value the new value of the '<em>Starting year</em>' attribute.
43 * @see #getStarting_year()
44 * @generated
45 */
46 void setStarting_year(int value);
47
48 /**
49 * Returns the value of the '<em><b>Id10</b></em>' attribute.
50 * <!-- begin-user-doc -->
51 * <!-- end-user-doc -->
52 * @return the value of the '<em>Id10</em>' attribute.
53 * @see #setId10(String)
54 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Property_Id10()
55 * @model id="true" required="true" ordered="false"
56 * @generated
57 */
58 String getId10();
59
60 /**
61 * Sets the value of the '{@link TaxationWithRoot.Tax_Property#getId10 <em>Id10</em>}' attribute.
62 * <!-- begin-user-doc -->
63 * <!-- end-user-doc -->
64 * @param value the new value of the '<em>Id10</em>' attribute.
65 * @see #getId10()
66 * @generated
67 */
68 void setId10(String value);
69
70 /**
71 * Returns the value of the '<em><b>Union record</b></em>' container reference.
72 * It is bidirectional and its opposite is '{@link TaxationWithRoot.Legal_Union_Record#getProperties <em>Properties</em>}'.
73 * <!-- begin-user-doc -->
74 * <!-- end-user-doc -->
75 * @return the value of the '<em>Union record</em>' container reference.
76 * @see #setUnion_record(Legal_Union_Record)
77 * @see TaxationWithRoot.TaxationWithRootPackage#getTax_Property_Union_record()
78 * @see TaxationWithRoot.Legal_Union_Record#getProperties
79 * @model opposite="properties" required="true" transient="false" ordered="false"
80 * @generated
81 */
82 Legal_Union_Record getUnion_record();
83
84 /**
85 * Sets the value of the '{@link TaxationWithRoot.Tax_Property#getUnion_record <em>Union record</em>}' container reference.
86 * <!-- begin-user-doc -->
87 * <!-- end-user-doc -->
88 * @param value the new value of the '<em>Union record</em>' container reference.
89 * @see #getUnion_record()
90 * @generated
91 */
92 void setUnion_record(Legal_Union_Record value);
93
94} // Tax_Property