summaryrefslogtreecommitdiffstats
path: root/rba.model.core/src/rba/core/Allocatable.java
blob: a7b585b7465316bf74217160b1581c9fe4992274 (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
80
81
82
83
84
85
86
87
88
89
90
91
/**
 */
package rba.core;

import org.eclipse.emf.common.util.EList;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Allocatable</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * 
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link rba.core.Allocatable#getArbitrationPolicy <em>Arbitration Policy</em>}</li>
 *   <li>{@link rba.core.Allocatable#getVisibility <em>Visibility</em>}</li>
 * </ul>
 *
 * @see rba.core.RBACorePackage#getAllocatable()
 * @model abstract="true"
 * @generated
 */
public interface Allocatable extends AbstractAllocatable {
	/**
	 * Returns the value of the '<em><b>Arbitration Policy</b></em>' attribute.
	 * The literals are from the enumeration {@link rba.core.ArbitrationPolicy}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * 
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Arbitration Policy</em>' attribute.
	 * @see rba.core.ArbitrationPolicy
	 * @see #setArbitrationPolicy(ArbitrationPolicy)
	 * @see rba.core.RBACorePackage#getAllocatable_ArbitrationPolicy()
	 * @model
	 * @generated
	 */
	ArbitrationPolicy getArbitrationPolicy();

	/**
	 * Sets the value of the '{@link rba.core.Allocatable#getArbitrationPolicy <em>Arbitration Policy</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Arbitration Policy</em>' attribute.
	 * @see rba.core.ArbitrationPolicy
	 * @see #getArbitrationPolicy()
	 * @generated
	 */
	void setArbitrationPolicy(ArbitrationPolicy value);

	/**
	 * Returns the value of the '<em><b>Visibility</b></em>' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * 
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Visibility</em>' containment reference.
	 * @see #setVisibility(Expression)
	 * @see rba.core.RBACorePackage#getAllocatable_Visibility()
	 * @model containment="true"
	 * @generated
	 */
	Expression getVisibility();

	/**
	 * Sets the value of the '{@link rba.core.Allocatable#getVisibility <em>Visibility</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Visibility</em>' containment reference.
	 * @see #getVisibility()
	 * @generated
	 */
	void setVisibility(Expression value);

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @model ordered="false"
	 *        annotation="http://www.eclipse.org/emf/2002/GenModel body='java.util.Set&lt;Allocatable&gt; allocatables = new java.util.HashSet&lt;Allocatable&gt;();\r\nallocatables.add(this);\r\nreturn new org.eclipse.emf.common.util.BasicEList&lt;Allocatable&gt;(allocatables);'"
	 * @generated
	 */
	EList<Allocatable> collectLeafAllocatable();

} // Allocatable