/** */ package Taxation; /** * * A representation of the model object 'Donation'. * * *

* The following features are supported: *

* * * @see Taxation.TaxationPackage#getDonation() * @model * @generated */ public interface Donation extends Special_Expense_DS { /** * Returns the value of the 'Beneficiary1' attribute. * * * @return the value of the 'Beneficiary1' attribute. * @see #setBeneficiary1(String) * @see Taxation.TaxationPackage#getDonation_Beneficiary1() * @model required="true" * @generated */ String getBeneficiary1(); /** * Sets the value of the '{@link Taxation.Donation#getBeneficiary1 Beneficiary1}' attribute. * * * @param value the new value of the 'Beneficiary1' attribute. * @see #getBeneficiary1() * @generated */ void setBeneficiary1(String value); /** * Returns the value of the 'Is beneficiary eligible' attribute. * The default value is "false". * * * @return the value of the 'Is beneficiary eligible' 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 Is beneficiary eligible}' attribute. * * * @param value the new value of the 'Is beneficiary eligible' attribute. * @see #isIs_beneficiary_eligible() * @generated */ void setIs_beneficiary_eligible(boolean value); /** * Returns the value of the 'Is donation reported' attribute. * * * @return the value of the 'Is donation reported' 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 Is donation reported}' attribute. * * * @param value the new value of the 'Is donation reported' attribute. * @see #isIs_donation_reported() * @generated */ void setIs_donation_reported(boolean value); } // Donation