aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/DS.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/DS.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/DS.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/DS.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/DS.java
new file mode 100644
index 00000000..9a6eac3f
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/DS.java
@@ -0,0 +1,67 @@
1/**
2 */
3package TaxationWithRoot;
4
5/**
6 * <!-- begin-user-doc -->
7 * A representation of the model object '<em><b>DS</b></em>'.
8 * <!-- end-user-doc -->
9 *
10 * <p>
11 * The following features are supported:
12 * </p>
13 * <ul>
14 * <li>{@link TaxationWithRoot.DS#getMaximum_deductible_amount <em>Maximum deductible amount</em>}</li>
15 * <li>{@link TaxationWithRoot.DS#getId3 <em>Id3</em>}</li>
16 * </ul>
17 *
18 * @see TaxationWithRoot.TaxationPackage#getDS()
19 * @model
20 * @generated
21 */
22public interface DS extends Root {
23 /**
24 * Returns the value of the '<em><b>Maximum deductible amount</b></em>' attribute.
25 * <!-- begin-user-doc -->
26 * <!-- end-user-doc -->
27 * @return the value of the '<em>Maximum deductible amount</em>' attribute.
28 * @see #setMaximum_deductible_amount(double)
29 * @see TaxationWithRoot.TaxationPackage#getDS_Maximum_deductible_amount()
30 * @model required="true"
31 * @generated
32 */
33 double getMaximum_deductible_amount();
34
35 /**
36 * Sets the value of the '{@link TaxationWithRoot.DS#getMaximum_deductible_amount <em>Maximum deductible amount</em>}' attribute.
37 * <!-- begin-user-doc -->
38 * <!-- end-user-doc -->
39 * @param value the new value of the '<em>Maximum deductible amount</em>' attribute.
40 * @see #getMaximum_deductible_amount()
41 * @generated
42 */
43 void setMaximum_deductible_amount(double value);
44
45 /**
46 * Returns the value of the '<em><b>Id3</b></em>' attribute.
47 * <!-- begin-user-doc -->
48 * <!-- end-user-doc -->
49 * @return the value of the '<em>Id3</em>' attribute.
50 * @see #setId3(String)
51 * @see TaxationWithRoot.TaxationPackage#getDS_Id3()
52 * @model id="true" required="true" ordered="false"
53 * @generated
54 */
55 String getId3();
56
57 /**
58 * Sets the value of the '{@link TaxationWithRoot.DS#getId3 <em>Id3</em>}' attribute.
59 * <!-- begin-user-doc -->
60 * <!-- end-user-doc -->
61 * @param value the new value of the '<em>Id3</em>' attribute.
62 * @see #getId3()
63 * @generated
64 */
65 void setId3(String value);
66
67} // DS