aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Resource.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Resource.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Resource.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Resource.java b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Resource.java
new file mode 100644
index 00000000..44afe03f
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Resource.java
@@ -0,0 +1,38 @@
1/**
2 */
3package TaxationWithRoot;
4
5import org.eclipse.emf.common.util.EList;
6
7import org.eclipse.emf.ecore.EObject;
8
9/**
10 * <!-- begin-user-doc -->
11 * A representation of the model object '<em><b>Resource</b></em>'.
12 * <!-- end-user-doc -->
13 *
14 * <p>
15 * The following features are supported:
16 * </p>
17 * <ul>
18 * <li>{@link TaxationWithRoot.Resource#getContains <em>Contains</em>}</li>
19 * </ul>
20 *
21 * @see TaxationWithRoot.TaxationWithRootPackage#getResource()
22 * @model
23 * @generated
24 */
25public interface Resource extends EObject {
26 /**
27 * Returns the value of the '<em><b>Contains</b></em>' containment reference list.
28 * The list contents are of type {@link TaxationWithRoot.Household}.
29 * <!-- begin-user-doc -->
30 * <!-- end-user-doc -->
31 * @return the value of the '<em>Contains</em>' containment reference list.
32 * @see TaxationWithRoot.TaxationWithRootPackage#getResource_Contains()
33 * @model containment="true"
34 * @generated
35 */
36 EList<Household> getContains();
37
38} // Resource