/** */ package rba.view; import rba.core.PackagableElement; /** * * A representation of the model object 'Display'. * * * * * * *

* The following features are supported: *

* * * @see rba.view.RBAViewPackage#getDisplay() * @model * @generated */ public interface Display extends PackagableElement { /** * Returns the value of the 'Root' containment reference. * * * * * * @return the value of the 'Root' 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 Root}' containment reference. * * * @param value the new value of the 'Root' containment reference. * @see #getRoot() * @generated */ void setRoot(CompositeArea value); /** * Returns the value of the 'Size' containment reference. * * * * * * @return the value of the 'Size' 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 Size}' containment reference. * * * @param value the new value of the 'Size' containment reference. * @see #getSize() * @generated */ void setSize(SizeIdentifier value); } // Display