summaryrefslogtreecommitdiffstats
path: root/rba.model.core/src/rba/core/Constraint.java
blob: b58dc40635cf0604a05b687f1c3df54b9efd00e8 (plain)
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
72
73
74
75
76
77
78
79
/**
 */
package rba.core;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Constraint</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * 
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link rba.core.Constraint#isRuntime <em>Runtime</em>}</li>
 * </ul>
 *
 * @see rba.core.RBACorePackage#getConstraint()
 * @model
 * @generated
 */
public interface Constraint extends AbstractConstraint {
	/**
	 * Returns the value of the '<em><b>Runtime</b></em>' attribute.
	 * The default value is <code>"true"</code>.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * 
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Runtime</em>' attribute.
	 * @see #isSetRuntime()
	 * @see #unsetRuntime()
	 * @see #setRuntime(boolean)
	 * @see rba.core.RBACorePackage#getConstraint_Runtime()
	 * @model default="true" unsettable="true" required="true"
	 * @generated
	 */
	boolean isRuntime();

	/**
	 * Sets the value of the '{@link rba.core.Constraint#isRuntime <em>Runtime</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Runtime</em>' attribute.
	 * @see #isSetRuntime()
	 * @see #unsetRuntime()
	 * @see #isRuntime()
	 * @generated
	 */
	void setRuntime(boolean value);

	/**
	 * Unsets the value of the '{@link rba.core.Constraint#isRuntime <em>Runtime</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #isSetRuntime()
	 * @see #isRuntime()
	 * @see #setRuntime(boolean)
	 * @generated
	 */
	void unsetRuntime();

	/**
	 * Returns whether the value of the '{@link rba.core.Constraint#isRuntime <em>Runtime</em>}' attribute is set.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return whether the value of the '<em>Runtime</em>' attribute is set.
	 * @see #unsetRuntime()
	 * @see #isRuntime()
	 * @see #setRuntime(boolean)
	 * @generated
	 */
	boolean isSetRuntime();

} // Constraint