aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/simpleScenario/ecore-gen/simpleScenario/SeperationDistance.java
blob: 140b4e4ba6807e3b091349ae2aca189200d9e44a (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
/**
 */
package simpleScenario;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Seperation Distance</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link simpleScenario.SeperationDistance#getDistance <em>Distance</em>}</li>
 *   <li>{@link simpleScenario.SeperationDistance#getNumDistance <em>Num Distance</em>}</li>
 * </ul>
 *
 * @see simpleScenario.SimpleScenarioPackage#getSeperationDistance()
 * @model
 * @generated
 */
public interface SeperationDistance extends SpatialRelation {
	/**
	 * Returns the value of the '<em><b>Distance</b></em>' attribute.
	 * The literals are from the enumeration {@link simpleScenario.Distance}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Distance</em>' attribute.
	 * @see simpleScenario.Distance
	 * @see #setDistance(Distance)
	 * @see simpleScenario.SimpleScenarioPackage#getSeperationDistance_Distance()
	 * @model required="true"
	 * @generated
	 */
	Distance getDistance();

	/**
	 * Sets the value of the '{@link simpleScenario.SeperationDistance#getDistance <em>Distance</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Distance</em>' attribute.
	 * @see simpleScenario.Distance
	 * @see #getDistance()
	 * @generated
	 */
	void setDistance(Distance value);

	/**
	 * Returns the value of the '<em><b>Num Distance</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Num Distance</em>' attribute.
	 * @see #setNumDistance(double)
	 * @see simpleScenario.SimpleScenarioPackage#getSeperationDistance_NumDistance()
	 * @model required="true" derived="true"
	 * @generated
	 */
	double getNumDistance();

	/**
	 * Sets the value of the '{@link simpleScenario.SeperationDistance#getNumDistance <em>Num Distance</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Num Distance</em>' attribute.
	 * @see #getNumDistance()
	 * @generated
	 */
	void setNumDistance(double value);

} // SeperationDistance