summaryrefslogtreecommitdiffstats
path: root/rba.model.view/src/rba/view/Display.java
blob: cb4ffbe238a18dd90d820237460643304ef1155a (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.view;

import rba.core.PackagableElement;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Display</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * 
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link rba.view.Display#getRoot <em>Root</em>}</li>
 *   <li>{@link rba.view.Display#getSize <em>Size</em>}</li>
 * </ul>
 *
 * @see rba.view.RBAViewPackage#getDisplay()
 * @model
 * @generated
 */
public interface Display extends PackagableElement {
	/**
	 * Returns the value of the '<em><b>Root</b></em>' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * 
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Root</em>' containment reference.
	 * @see #setRoot(CompositeArea)
	 * @see rba.view.RBAViewPackage#getDisplay_Root()
	 * @model containment="true"
	 * @generated
	 */
	CompositeArea getRoot();

	/**
	 * Sets the value of the '{@link rba.view.Display#getRoot <em>Root</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Root</em>' containment reference.
	 * @see #getRoot()
	 * @generated
	 */
	void setRoot(CompositeArea value);

	/**
	 * Returns the value of the '<em><b>Size</b></em>' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * 
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Size</em>' containment reference.
	 * @see #setSize(SizeIdentifier)
	 * @see rba.view.RBAViewPackage#getDisplay_Size()
	 * @model containment="true" required="true"
	 * @generated
	 */
	SizeIdentifier getSize();

	/**
	 * Sets the value of the '{@link rba.view.Display#getSize <em>Size</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Size</em>' containment reference.
	 * @see #getSize()
	 * @generated
	 */
	void setSize(SizeIdentifier value);

} // Display