aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Income_Type.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Income_Type.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Income_Type.java71
1 files changed, 71 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Income_Type.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Income_Type.java
new file mode 100644
index 00000000..418ab8b4
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/Income_Type.java
@@ -0,0 +1,71 @@
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>Income Type</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * </p>
15 * <ul>
16 * <li>{@link TaxationWithRoot.Income_Type#getId8 <em>Id8</em>}</li>
17 * <li>{@link TaxationWithRoot.Income_Type#getIncome <em>Income</em>}</li>
18 * </ul>
19 *
20 * @see TaxationWithRoot.TaxationPackage#getIncome_Type()
21 * @model abstract="true"
22 * @generated
23 */
24public interface Income_Type extends EObject {
25 /**
26 * Returns the value of the '<em><b>Id8</b></em>' attribute.
27 * <!-- begin-user-doc -->
28 * <!-- end-user-doc -->
29 * @return the value of the '<em>Id8</em>' attribute.
30 * @see #setId8(String)
31 * @see TaxationWithRoot.TaxationPackage#getIncome_Type_Id8()
32 * @model id="true" required="true" ordered="false"
33 * @generated
34 */
35 String getId8();
36
37 /**
38 * Sets the value of the '{@link TaxationWithRoot.Income_Type#getId8 <em>Id8</em>}' attribute.
39 * <!-- begin-user-doc -->
40 * <!-- end-user-doc -->
41 * @param value the new value of the '<em>Id8</em>' attribute.
42 * @see #getId8()
43 * @generated
44 */
45 void setId8(String value);
46
47 /**
48 * Returns the value of the '<em><b>Income</b></em>' container reference.
49 * It is bidirectional and its opposite is '{@link TaxationWithRoot.Income#getIncome_type <em>Income type</em>}'.
50 * <!-- begin-user-doc -->
51 * <!-- end-user-doc -->
52 * @return the value of the '<em>Income</em>' container reference.
53 * @see #setIncome(Income)
54 * @see TaxationWithRoot.TaxationPackage#getIncome_Type_Income()
55 * @see TaxationWithRoot.Income#getIncome_type
56 * @model opposite="income_type" required="true" transient="false"
57 * @generated
58 */
59 Income getIncome();
60
61 /**
62 * Sets the value of the '{@link TaxationWithRoot.Income_Type#getIncome <em>Income</em>}' container reference.
63 * <!-- begin-user-doc -->
64 * <!-- end-user-doc -->
65 * @param value the new value of the '<em>Income</em>' container reference.
66 * @see #getIncome()
67 * @generated
68 */
69 void setIncome(Income value);
70
71} // Income_Type