aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/models20.diversity-calculator/src/TaxationWithRoot/Donation.java
blob: 64adc1546153951ee62b2dc6b5d011cdc5bd82f9 (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
/**
 */
package TaxationWithRoot;


/**
 * <!-- 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 TaxationWithRoot.Donation#getBeneficiary1 <em>Beneficiary1</em>}</li>
 *   <li>{@link TaxationWithRoot.Donation#isIs_donation_reported <em>Is donation reported</em>}</li>
 * </ul>
 *
 * @see TaxationWithRoot.TaxationWithRootPackage#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 TaxationWithRoot.TaxationWithRootPackage#getDonation_Beneficiary1()
	 * @model required="true"
	 * @generated
	 */
	String getBeneficiary1();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.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 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 TaxationWithRoot.TaxationWithRootPackage#getDonation_Is_donation_reported()
	 * @model required="true"
	 * @generated
	 */
	boolean isIs_donation_reported();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.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