aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/TaxationWithRoot/DS.java
blob: 9a6eac3f75c3af5bf05925e58eb91b14b4cef71c (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
/**
 */
package TaxationWithRoot;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>DS</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link TaxationWithRoot.DS#getMaximum_deductible_amount <em>Maximum deductible amount</em>}</li>
 *   <li>{@link TaxationWithRoot.DS#getId3 <em>Id3</em>}</li>
 * </ul>
 *
 * @see TaxationWithRoot.TaxationPackage#getDS()
 * @model
 * @generated
 */
public interface DS extends Root {
	/**
	 * Returns the value of the '<em><b>Maximum deductible amount</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Maximum deductible amount</em>' attribute.
	 * @see #setMaximum_deductible_amount(double)
	 * @see TaxationWithRoot.TaxationPackage#getDS_Maximum_deductible_amount()
	 * @model required="true"
	 * @generated
	 */
	double getMaximum_deductible_amount();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.DS#getMaximum_deductible_amount <em>Maximum deductible amount</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Maximum deductible amount</em>' attribute.
	 * @see #getMaximum_deductible_amount()
	 * @generated
	 */
	void setMaximum_deductible_amount(double value);

	/**
	 * Returns the value of the '<em><b>Id3</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Id3</em>' attribute.
	 * @see #setId3(String)
	 * @see TaxationWithRoot.TaxationPackage#getDS_Id3()
	 * @model id="true" required="true" ordered="false"
	 * @generated
	 */
	String getId3();

	/**
	 * Sets the value of the '{@link TaxationWithRoot.DS#getId3 <em>Id3</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Id3</em>' attribute.
	 * @see #getId3()
	 * @generated
	 */
	void setId3(String value);

} // DS