aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Donation.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Donation.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Donation.java92
1 files changed, 92 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Donation.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Donation.java
new file mode 100644
index 00000000..343238d9
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Donation.java
@@ -0,0 +1,92 @@
1/**
2 */
3package Taxation;
4
5
6/**
7 * <!-- begin-user-doc -->
8 * A representation of the model object '<em><b>Donation</b></em>'.
9 * <!-- end-user-doc -->
10 *
11 * <p>
12 * The following features are supported:
13 * </p>
14 * <ul>
15 * <li>{@link Taxation.Donation#getBeneficiary1 <em>Beneficiary1</em>}</li>
16 * <li>{@link Taxation.Donation#isIs_beneficiary_eligible <em>Is beneficiary eligible</em>}</li>
17 * <li>{@link Taxation.Donation#isIs_donation_reported <em>Is donation reported</em>}</li>
18 * </ul>
19 *
20 * @see Taxation.TaxationPackage#getDonation()
21 * @model
22 * @generated
23 */
24public interface Donation extends Special_Expense_DS {
25 /**
26 * Returns the value of the '<em><b>Beneficiary1</b></em>' attribute.
27 * <!-- begin-user-doc -->
28 * <!-- end-user-doc -->
29 * @return the value of the '<em>Beneficiary1</em>' attribute.
30 * @see #setBeneficiary1(String)
31 * @see Taxation.TaxationPackage#getDonation_Beneficiary1()
32 * @model required="true"
33 * @generated
34 */
35 String getBeneficiary1();
36
37 /**
38 * Sets the value of the '{@link Taxation.Donation#getBeneficiary1 <em>Beneficiary1</em>}' attribute.
39 * <!-- begin-user-doc -->
40 * <!-- end-user-doc -->
41 * @param value the new value of the '<em>Beneficiary1</em>' attribute.
42 * @see #getBeneficiary1()
43 * @generated
44 */
45 void setBeneficiary1(String value);
46
47 /**
48 * Returns the value of the '<em><b>Is beneficiary eligible</b></em>' attribute.
49 * The default value is <code>"false"</code>.
50 * <!-- begin-user-doc -->
51 * <!-- end-user-doc -->
52 * @return the value of the '<em>Is beneficiary eligible</em>' attribute.
53 * @see #setIs_beneficiary_eligible(boolean)
54 * @see Taxation.TaxationPackage#getDonation_Is_beneficiary_eligible()
55 * @model default="false" required="true" derived="true"
56 * @generated
57 */
58 boolean isIs_beneficiary_eligible();
59
60 /**
61 * Sets the value of the '{@link Taxation.Donation#isIs_beneficiary_eligible <em>Is beneficiary eligible</em>}' attribute.
62 * <!-- begin-user-doc -->
63 * <!-- end-user-doc -->
64 * @param value the new value of the '<em>Is beneficiary eligible</em>' attribute.
65 * @see #isIs_beneficiary_eligible()
66 * @generated
67 */
68 void setIs_beneficiary_eligible(boolean value);
69
70 /**
71 * Returns the value of the '<em><b>Is donation reported</b></em>' attribute.
72 * <!-- begin-user-doc -->
73 * <!-- end-user-doc -->
74 * @return the value of the '<em>Is donation reported</em>' attribute.
75 * @see #setIs_donation_reported(boolean)
76 * @see Taxation.TaxationPackage#getDonation_Is_donation_reported()
77 * @model required="true"
78 * @generated
79 */
80 boolean isIs_donation_reported();
81
82 /**
83 * Sets the value of the '{@link Taxation.Donation#isIs_donation_reported <em>Is donation reported</em>}' attribute.
84 * <!-- begin-user-doc -->
85 * <!-- end-user-doc -->
86 * @param value the new value of the '<em>Is donation reported</em>' attribute.
87 * @see #isIs_donation_reported()
88 * @generated
89 */
90 void setIs_donation_reported(boolean value);
91
92} // Donation