aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Health_and_Pension_Insurance.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Health_and_Pension_Insurance.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Health_and_Pension_Insurance.java72
1 files changed, 72 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Health_and_Pension_Insurance.java b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Health_and_Pension_Insurance.java
new file mode 100644
index 00000000..03e4b1ce
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Health_and_Pension_Insurance.java
@@ -0,0 +1,72 @@
1/**
2 */
3package TaxationWithRoot;
4
5
6/**
7 * <!-- begin-user-doc -->
8 * A representation of the model object '<em><b>Health and Pension Insurance</b></em>'.
9 * <!-- end-user-doc -->
10 *
11 * <p>
12 * The following features are supported:
13 * </p>
14 * <ul>
15 * <li>{@link TaxationWithRoot.Health_and_Pension_Insurance#getCategory <em>Category</em>}</li>
16 * <li>{@link TaxationWithRoot.Health_and_Pension_Insurance#isIs_related_to_additional_salary <em>Is related to additional salary</em>}</li>
17 * </ul>
18 *
19 * @see TaxationWithRoot.TaxationWithRootPackage#getHealth_and_Pension_Insurance()
20 * @model
21 * @generated
22 */
23public interface Health_and_Pension_Insurance 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 TaxationWithRoot.Category_of_Health_and_Pension_Insurances}.
27 * <!-- begin-user-doc -->
28 * <!-- end-user-doc -->
29 * @return the value of the '<em>Category</em>' attribute.
30 * @see TaxationWithRoot.Category_of_Health_and_Pension_Insurances
31 * @see #setCategory(Category_of_Health_and_Pension_Insurances)
32 * @see TaxationWithRoot.TaxationWithRootPackage#getHealth_and_Pension_Insurance_Category()
33 * @model required="true"
34 * @generated
35 */
36 Category_of_Health_and_Pension_Insurances getCategory();
37
38 /**
39 * Sets the value of the '{@link TaxationWithRoot.Health_and_Pension_Insurance#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 TaxationWithRoot.Category_of_Health_and_Pension_Insurances
44 * @see #getCategory()
45 * @generated
46 */
47 void setCategory(Category_of_Health_and_Pension_Insurances value);
48
49 /**
50 * Returns the value of the '<em><b>Is related to additional salary</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 related to additional salary</em>' attribute.
55 * @see #setIs_related_to_additional_salary(boolean)
56 * @see TaxationWithRoot.TaxationWithRootPackage#getHealth_and_Pension_Insurance_Is_related_to_additional_salary()
57 * @model default="false" required="true"
58 * @generated
59 */
60 boolean isIs_related_to_additional_salary();
61
62 /**
63 * Sets the value of the '{@link TaxationWithRoot.Health_and_Pension_Insurance#isIs_related_to_additional_salary <em>Is related to additional salary</em>}' attribute.
64 * <!-- begin-user-doc -->
65 * <!-- end-user-doc -->
66 * @param value the new value of the '<em>Is related to additional salary</em>' attribute.
67 * @see #isIs_related_to_additional_salary()
68 * @generated
69 */
70 void setIs_related_to_additional_salary(boolean value);
71
72} // Health_and_Pension_Insurance