aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java116
1 files changed, 116 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java
new file mode 100644
index 00000000..e2ecfb38
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Loss_Carryforward.java
@@ -0,0 +1,116 @@
1/**
2 */
3package Taxation;
4
5
6/**
7 * <!-- begin-user-doc -->
8 * A representation of the model object '<em><b>Loss Carryforward</b></em>'.
9 * <!-- end-user-doc -->
10 *
11 * <p>
12 * The following features are supported:
13 * </p>
14 * <ul>
15 * <li>{@link Taxation.Loss_Carryforward#isRegular_accountability <em>Regular accountability</em>}</li>
16 * <li>{@link Taxation.Loss_Carryforward#isCompensation_by_other_means <em>Compensation by other means</em>}</li>
17 * <li>{@link Taxation.Loss_Carryforward#isTax_payer_has_inherited_business_ownership <em>Tax payer has inherited business ownership</em>}</li>
18 * <li>{@link Taxation.Loss_Carryforward#isTax_payer_has_been_partner_in_business <em>Tax payer has been partner in business</em>}</li>
19 * </ul>
20 *
21 * @see Taxation.TaxationPackage#getLoss_Carryforward()
22 * @model
23 * @generated
24 */
25public interface Loss_Carryforward extends Special_Expense_DS {
26 /**
27 * Returns the value of the '<em><b>Regular accountability</b></em>' attribute.
28 * <!-- begin-user-doc -->
29 * <!-- end-user-doc -->
30 * @return the value of the '<em>Regular accountability</em>' attribute.
31 * @see #setRegular_accountability(boolean)
32 * @see Taxation.TaxationPackage#getLoss_Carryforward_Regular_accountability()
33 * @model required="true" derived="true"
34 * @generated
35 */
36 boolean isRegular_accountability();
37
38 /**
39 * Sets the value of the '{@link Taxation.Loss_Carryforward#isRegular_accountability <em>Regular accountability</em>}' attribute.
40 * <!-- begin-user-doc -->
41 * <!-- end-user-doc -->
42 * @param value the new value of the '<em>Regular accountability</em>' attribute.
43 * @see #isRegular_accountability()
44 * @generated
45 */
46 void setRegular_accountability(boolean value);
47
48 /**
49 * Returns the value of the '<em><b>Compensation by other means</b></em>' attribute.
50 * <!-- begin-user-doc -->
51 * <!-- end-user-doc -->
52 * @return the value of the '<em>Compensation by other means</em>' attribute.
53 * @see #setCompensation_by_other_means(boolean)
54 * @see Taxation.TaxationPackage#getLoss_Carryforward_Compensation_by_other_means()
55 * @model required="true" derived="true"
56 * @generated
57 */
58 boolean isCompensation_by_other_means();
59
60 /**
61 * Sets the value of the '{@link Taxation.Loss_Carryforward#isCompensation_by_other_means <em>Compensation by other means</em>}' attribute.
62 * <!-- begin-user-doc -->
63 * <!-- end-user-doc -->
64 * @param value the new value of the '<em>Compensation by other means</em>' attribute.
65 * @see #isCompensation_by_other_means()
66 * @generated
67 */
68 void setCompensation_by_other_means(boolean value);
69
70 /**
71 * Returns the value of the '<em><b>Tax payer has inherited business ownership</b></em>' attribute.
72 * The default value is <code>"false"</code>.
73 * <!-- begin-user-doc -->
74 * <!-- end-user-doc -->
75 * @return the value of the '<em>Tax payer has inherited business ownership</em>' attribute.
76 * @see #setTax_payer_has_inherited_business_ownership(boolean)
77 * @see Taxation.TaxationPackage#getLoss_Carryforward_Tax_payer_has_inherited_business_ownership()
78 * @model default="false" required="true" derived="true"
79 * @generated
80 */
81 boolean isTax_payer_has_inherited_business_ownership();
82
83 /**
84 * Sets the value of the '{@link Taxation.Loss_Carryforward#isTax_payer_has_inherited_business_ownership <em>Tax payer has inherited business ownership</em>}' attribute.
85 * <!-- begin-user-doc -->
86 * <!-- end-user-doc -->
87 * @param value the new value of the '<em>Tax payer has inherited business ownership</em>' attribute.
88 * @see #isTax_payer_has_inherited_business_ownership()
89 * @generated
90 */
91 void setTax_payer_has_inherited_business_ownership(boolean value);
92
93 /**
94 * Returns the value of the '<em><b>Tax payer has been partner in business</b></em>' attribute.
95 * The default value is <code>"true"</code>.
96 * <!-- begin-user-doc -->
97 * <!-- end-user-doc -->
98 * @return the value of the '<em>Tax payer has been partner in business</em>' attribute.
99 * @see #setTax_payer_has_been_partner_in_business(boolean)
100 * @see Taxation.TaxationPackage#getLoss_Carryforward_Tax_payer_has_been_partner_in_business()
101 * @model default="true" required="true" derived="true"
102 * @generated
103 */
104 boolean isTax_payer_has_been_partner_in_business();
105
106 /**
107 * Sets the value of the '{@link Taxation.Loss_Carryforward#isTax_payer_has_been_partner_in_business <em>Tax payer has been partner in business</em>}' attribute.
108 * <!-- begin-user-doc -->
109 * <!-- end-user-doc -->
110 * @param value the new value of the '<em>Tax payer has been partner in business</em>' attribute.
111 * @see #isTax_payer_has_been_partner_in_business()
112 * @generated
113 */
114 void setTax_payer_has_been_partner_in_business(boolean value);
115
116} // Loss_Carryforward