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