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