aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/FromLaw.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/FromLaw.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/FromLaw.java71
1 files changed, 71 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/FromLaw.java b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/FromLaw.java
new file mode 100644
index 00000000..34c08e55
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/FromLaw.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>From Law</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * </p>
15 * <ul>
16 * <li>{@link TaxationWithRoot.FromLaw#getId <em>Id</em>}</li>
17 * <li>{@link TaxationWithRoot.FromLaw#getTaxPayer <em>Tax Payer</em>}</li>
18 * </ul>
19 *
20 * @see TaxationWithRoot.TaxationWithRootPackage#getFromLaw()
21 * @model
22 * @generated
23 */
24public interface FromLaw extends EObject {
25 /**
26 * Returns the value of the '<em><b>Id</b></em>' attribute.
27 * <!-- begin-user-doc -->
28 * <!-- end-user-doc -->
29 * @return the value of the '<em>Id</em>' attribute.
30 * @see #setId(String)
31 * @see TaxationWithRoot.TaxationWithRootPackage#getFromLaw_Id()
32 * @model id="true" required="true" ordered="false"
33 * @generated
34 */
35 String getId();
36
37 /**
38 * Sets the value of the '{@link TaxationWithRoot.FromLaw#getId <em>Id</em>}' attribute.
39 * <!-- begin-user-doc -->
40 * <!-- end-user-doc -->
41 * @param value the new value of the '<em>Id</em>' attribute.
42 * @see #getId()
43 * @generated
44 */
45 void setId(String value);
46
47 /**
48 * Returns the value of the '<em><b>Tax Payer</b></em>' container reference.
49 * It is bidirectional and its opposite is '{@link TaxationWithRoot.Tax_Payer#getFrom_law <em>From law</em>}'.
50 * <!-- begin-user-doc -->
51 * <!-- end-user-doc -->
52 * @return the value of the '<em>Tax Payer</em>' container reference.
53 * @see #setTaxPayer(Tax_Payer)
54 * @see TaxationWithRoot.TaxationWithRootPackage#getFromLaw_TaxPayer()
55 * @see TaxationWithRoot.Tax_Payer#getFrom_law
56 * @model opposite="from_law" required="true" transient="false"
57 * @generated
58 */
59 Tax_Payer getTaxPayer();
60
61 /**
62 * Sets the value of the '{@link TaxationWithRoot.FromLaw#getTaxPayer <em>Tax Payer</em>}' container reference.
63 * <!-- begin-user-doc -->
64 * <!-- end-user-doc -->
65 * @param value the new value of the '<em>Tax Payer</em>' container reference.
66 * @see #getTaxPayer()
67 * @generated
68 */
69 void setTaxPayer(Tax_Payer value);
70
71} // FromLaw