aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/FD.java
blob: 0c74a2565a99f674132af314442225f3c1e09f20 (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 Taxation;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>FD</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link Taxation.FD#getDistance_declared_in_january <em>Distance declared in january</em>}</li>
 *   <li>{@link Taxation.FD#getCalculated_distance <em>Calculated distance</em>}</li>
 * </ul>
 *
 * @see Taxation.TaxationPackage#getFD()
 * @model
 * @generated
 */
public interface FD extends Professional_Expenses_Deduction {
	/**
	 * Returns the value of the '<em><b>Distance declared in january</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Distance declared in january</em>' attribute.
	 * @see #setDistance_declared_in_january(double)
	 * @see Taxation.TaxationPackage#getFD_Distance_declared_in_january()
	 * @model required="true"
	 * @generated
	 */
	double getDistance_declared_in_january();

	/**
	 * Sets the value of the '{@link Taxation.FD#getDistance_declared_in_january <em>Distance declared in january</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Distance declared in january</em>' attribute.
	 * @see #getDistance_declared_in_january()
	 * @generated
	 */
	void setDistance_declared_in_january(double value);

	/**
	 * Returns the value of the '<em><b>Calculated distance</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Calculated distance</em>' attribute.
	 * @see #setCalculated_distance(double)
	 * @see Taxation.TaxationPackage#getFD_Calculated_distance()
	 * @model required="true" derived="true"
	 * @generated
	 */
	double getCalculated_distance();

	/**
	 * Sets the value of the '{@link Taxation.FD#getCalculated_distance <em>Calculated distance</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Calculated distance</em>' attribute.
	 * @see #getCalculated_distance()
	 * @generated
	 */
	void setCalculated_distance(double value);

} // FD