aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Donation.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Donation.java')
-rw-r--r--Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Donation.java68
1 files changed, 68 insertions, 0 deletions
diff --git a/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Donation.java b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Donation.java
new file mode 100644
index 00000000..64adc154
--- /dev/null
+++ b/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Donation.java
@@ -0,0 +1,68 @@
1/**
2 */
3package TaxationWithRoot;
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 TaxationWithRoot.Donation#getBeneficiary1 <em>Beneficiary1</em>}</li>
16 * <li>{@link TaxationWithRoot.Donation#isIs_donation_reported <em>Is donation reported</em>}</li>
17 * </ul>
18 *
19 * @see TaxationWithRoot.TaxationWithRootPackage#getDonation()
20 * @model
21 * @generated
22 */
23public interface Donation extends Special_Expense_DS {
24 /**
25 * Returns the value of the '<em><b>Beneficiary1</b></em>' attribute.
26 * <!-- begin-user-doc -->
27 * <!-- end-user-doc -->
28 * @return the value of the '<em>Beneficiary1</em>' attribute.
29 * @see #setBeneficiary1(String)
30 * @see TaxationWithRoot.TaxationWithRootPackage#getDonation_Beneficiary1()
31 * @model required="true"
32 * @generated
33 */
34 String getBeneficiary1();
35
36 /**
37 * Sets the value of the '{@link TaxationWithRoot.Donation#getBeneficiary1 <em>Beneficiary1</em>}' attribute.
38 * <!-- begin-user-doc -->
39 * <!-- end-user-doc -->
40 * @param value the new value of the '<em>Beneficiary1</em>' attribute.
41 * @see #getBeneficiary1()
42 * @generated
43 */
44 void setBeneficiary1(String value);
45
46 /**
47 * Returns the value of the '<em><b>Is donation reported</b></em>' attribute.
48 * <!-- begin-user-doc -->
49 * <!-- end-user-doc -->
50 * @return the value of the '<em>Is donation reported</em>' attribute.
51 * @see #setIs_donation_reported(boolean)
52 * @see TaxationWithRoot.TaxationWithRootPackage#getDonation_Is_donation_reported()
53 * @model required="true"
54 * @generated
55 */
56 boolean isIs_donation_reported();
57
58 /**
59 * Sets the value of the '{@link TaxationWithRoot.Donation#isIs_donation_reported <em>Is donation reported</em>}' attribute.
60 * <!-- begin-user-doc -->
61 * <!-- end-user-doc -->
62 * @param value the new value of the '<em>Is donation reported</em>' attribute.
63 * @see #isIs_donation_reported()
64 * @generated
65 */
66 void setIs_donation_reported(boolean value);
67
68} // Donation