aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Private_Insurance_and_Plan.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Private_Insurance_and_Plan.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Private_Insurance_and_Plan.java94
1 files changed, 94 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Private_Insurance_and_Plan.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Private_Insurance_and_Plan.java
new file mode 100644
index 00000000..789099c5
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Private_Insurance_and_Plan.java
@@ -0,0 +1,94 @@
1/**
2 */
3package Taxation;
4
5/**
6 * <!-- begin-user-doc -->
7 * A representation of the model object '<em><b>Private Insurance and Plan</b></em>'.
8 * <!-- end-user-doc -->
9 *
10 * <p>
11 * The following features are supported:
12 * </p>
13 * <ul>
14 * <li>{@link Taxation.Private_Insurance_and_Plan#getCategory <em>Category</em>}</li>
15 * <li>{@link Taxation.Private_Insurance_and_Plan#getDuration_of_contract <em>Duration of contract</em>}</li>
16 * <li>{@link Taxation.Private_Insurance_and_Plan#isIs_private_insurance_and_plan_eligible_for_deduction <em>Is private insurance and plan eligible for deduction</em>}</li>
17 * </ul>
18 *
19 * @see Taxation.TaxationPackage#getPrivate_Insurance_and_Plan()
20 * @model
21 * @generated
22 */
23public interface Private_Insurance_and_Plan 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_Private_Insurance_and_Plan}.
27 * <!-- begin-user-doc -->
28 * <!-- end-user-doc -->
29 * @return the value of the '<em>Category</em>' attribute.
30 * @see Taxation.Category_of_Private_Insurance_and_Plan
31 * @see #setCategory(Category_of_Private_Insurance_and_Plan)
32 * @see Taxation.TaxationPackage#getPrivate_Insurance_and_Plan_Category()
33 * @model required="true"
34 * @generated
35 */
36 Category_of_Private_Insurance_and_Plan getCategory();
37
38 /**
39 * Sets the value of the '{@link Taxation.Private_Insurance_and_Plan#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_Private_Insurance_and_Plan
44 * @see #getCategory()
45 * @generated
46 */
47 void setCategory(Category_of_Private_Insurance_and_Plan value);
48
49 /**
50 * Returns the value of the '<em><b>Duration of contract</b></em>' attribute.
51 * <!-- begin-user-doc -->
52 * <!-- end-user-doc -->
53 * @return the value of the '<em>Duration of contract</em>' attribute.
54 * @see #setDuration_of_contract(int)
55 * @see Taxation.TaxationPackage#getPrivate_Insurance_and_Plan_Duration_of_contract()
56 * @model required="true"
57 * @generated
58 */
59 int getDuration_of_contract();
60
61 /**
62 * Sets the value of the '{@link Taxation.Private_Insurance_and_Plan#getDuration_of_contract <em>Duration of contract</em>}' attribute.
63 * <!-- begin-user-doc -->
64 * <!-- end-user-doc -->
65 * @param value the new value of the '<em>Duration of contract</em>' attribute.
66 * @see #getDuration_of_contract()
67 * @generated
68 */
69 void setDuration_of_contract(int value);
70
71 /**
72 * Returns the value of the '<em><b>Is private insurance and plan eligible for deduction</b></em>' attribute.
73 * The default value is <code>"false"</code>.
74 * <!-- begin-user-doc -->
75 * <!-- end-user-doc -->
76 * @return the value of the '<em>Is private insurance and plan eligible for deduction</em>' attribute.
77 * @see #setIs_private_insurance_and_plan_eligible_for_deduction(boolean)
78 * @see Taxation.TaxationPackage#getPrivate_Insurance_and_Plan_Is_private_insurance_and_plan_eligible_for_deduction()
79 * @model default="false" required="true" derived="true"
80 * @generated
81 */
82 boolean isIs_private_insurance_and_plan_eligible_for_deduction();
83
84 /**
85 * Sets the value of the '{@link Taxation.Private_Insurance_and_Plan#isIs_private_insurance_and_plan_eligible_for_deduction <em>Is private insurance and plan eligible for deduction</em>}' attribute.
86 * <!-- begin-user-doc -->
87 * <!-- end-user-doc -->
88 * @param value the new value of the '<em>Is private insurance and plan eligible for deduction</em>' attribute.
89 * @see #isIs_private_insurance_and_plan_eligible_for_deduction()
90 * @generated
91 */
92 void setIs_private_insurance_and_plan_eligible_for_deduction(boolean value);
93
94} // Private_Insurance_and_Plan