aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Extraordinary_Expense_CE.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Extraordinary_Expense_CE.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Extraordinary_Expense_CE.java71
1 files changed, 71 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Extraordinary_Expense_CE.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Extraordinary_Expense_CE.java
new file mode 100644
index 00000000..d377da58
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Extraordinary_Expense_CE.java
@@ -0,0 +1,71 @@
1/**
2 */
3package Taxation;
4
5
6/**
7 * <!-- begin-user-doc -->
8 * A representation of the model object '<em><b>Extraordinary Expense CE</b></em>'.
9 * <!-- end-user-doc -->
10 *
11 * <p>
12 * The following features are supported:
13 * </p>
14 * <ul>
15 * <li>{@link Taxation.Extraordinary_Expense_CE#getThresholded_deduction_percentage <em>Thresholded deduction percentage</em>}</li>
16 * <li>{@link Taxation.Extraordinary_Expense_CE#getCe_type <em>Ce type</em>}</li>
17 * </ul>
18 *
19 * @see Taxation.TaxationPackage#getExtraordinary_Expense_CE()
20 * @model
21 * @generated
22 */
23public interface Extraordinary_Expense_CE extends Expense {
24 /**
25 * Returns the value of the '<em><b>Thresholded deduction percentage</b></em>' attribute.
26 * <!-- begin-user-doc -->
27 * <!-- end-user-doc -->
28 * @return the value of the '<em>Thresholded deduction percentage</em>' attribute.
29 * @see #setThresholded_deduction_percentage(double)
30 * @see Taxation.TaxationPackage#getExtraordinary_Expense_CE_Thresholded_deduction_percentage()
31 * @model required="true"
32 * @generated
33 */
34 double getThresholded_deduction_percentage();
35
36 /**
37 * Sets the value of the '{@link Taxation.Extraordinary_Expense_CE#getThresholded_deduction_percentage <em>Thresholded deduction percentage</em>}' attribute.
38 * <!-- begin-user-doc -->
39 * <!-- end-user-doc -->
40 * @param value the new value of the '<em>Thresholded deduction percentage</em>' attribute.
41 * @see #getThresholded_deduction_percentage()
42 * @generated
43 */
44 void setThresholded_deduction_percentage(double value);
45
46 /**
47 * Returns the value of the '<em><b>Ce type</b></em>' attribute.
48 * The literals are from the enumeration {@link Taxation.CE_Type}.
49 * <!-- begin-user-doc -->
50 * <!-- end-user-doc -->
51 * @return the value of the '<em>Ce type</em>' attribute.
52 * @see Taxation.CE_Type
53 * @see #setCe_type(CE_Type)
54 * @see Taxation.TaxationPackage#getExtraordinary_Expense_CE_Ce_type()
55 * @model required="true"
56 * @generated
57 */
58 CE_Type getCe_type();
59
60 /**
61 * Sets the value of the '{@link Taxation.Extraordinary_Expense_CE#getCe_type <em>Ce type</em>}' attribute.
62 * <!-- begin-user-doc -->
63 * <!-- end-user-doc -->
64 * @param value the new value of the '<em>Ce type</em>' attribute.
65 * @see Taxation.CE_Type
66 * @see #getCe_type()
67 * @generated
68 */
69 void setCe_type(CE_Type value);
70
71} // Extraordinary_Expense_CE