aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Donation.java
blob: 343238d92349c78c60ee39475f5061370ca79c86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
 */
package Taxation;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Donation</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link Taxation.Donation#getBeneficiary1 <em>Beneficiary1</em>}</li>
 *   <li>{@link Taxation.Donation#isIs_beneficiary_eligible <em>Is beneficiary eligible</em>}</li>
 *   <li>{@link Taxation.Donation#isIs_donation_reported <em>Is donation reported</em>}</li>
 * </ul>
 *
 * @see Taxation.TaxationPackage#getDonation()
 * @model
 * @generated
 */
public interface Donation extends Special_Expense_DS {
	/**
	 * Returns the value of the '<em><b>Beneficiary1</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Beneficiary1</em>' attribute.
	 * @see #setBeneficiary1(String)
	 * @see Taxation.TaxationPackage#getDonation_Beneficiary1()
	 * @model required="true"
	 * @generated
	 */
	String getBeneficiary1();

	/**
	 * Sets the value of the '{@link Taxation.Donation#getBeneficiary1 <em>Beneficiary1</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Beneficiary1</em>' attribute.
	 * @see #getBeneficiary1()
	 * @generated
	 */
	void setBeneficiary1(String value);

	/**
	 * Returns the value of the '<em><b>Is beneficiary eligible</b></em>' attribute.
	 * The default value is <code>"false"</code>.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Is beneficiary eligible</em>' attribute.
	 * @see #setIs_beneficiary_eligible(boolean)
	 * @see Taxation.TaxationPackage#getDonation_Is_beneficiary_eligible()
	 * @model default="false" required="true" derived="true"
	 * @generated
	 */
	boolean isIs_beneficiary_eligible();

	/**
	 * Sets the value of the '{@link Taxation.Donation#isIs_beneficiary_eligible <em>Is beneficiary eligible</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Is beneficiary eligible</em>' attribute.
	 * @see #isIs_beneficiary_eligible()
	 * @generated
	 */
	void setIs_beneficiary_eligible(boolean value);

	/**
	 * Returns the value of the '<em><b>Is donation reported</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Is donation reported</em>' attribute.
	 * @see #setIs_donation_reported(boolean)
	 * @see Taxation.TaxationPackage#getDonation_Is_donation_reported()
	 * @model required="true"
	 * @generated
	 */
	boolean isIs_donation_reported();

	/**
	 * Sets the value of the '{@link Taxation.Donation#isIs_donation_reported <em>Is donation reported</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Is donation reported</em>' attribute.
	 * @see #isIs_donation_reported()
	 * @generated
	 */
	void setIs_donation_reported(boolean value);

} // Donation