/** */ package rba.view; /** * * A representation of the model object 'Size Reference'. * * *

* The following features are supported: *

* * * @see rba.view.RBAViewPackage#getSizeReference() * @model * @generated */ public interface SizeReference extends SizeIdentifier { /** * Returns the value of the 'Size' reference. * *

* If the meaning of the 'Size' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Size' reference. * @see #setSize(Size) * @see rba.view.RBAViewPackage#getSizeReference_Size() * @model * @generated */ Size getSize(); /** * Sets the value of the '{@link rba.view.SizeReference#getSize Size}' reference. * * * @param value the new value of the 'Size' reference. * @see #getSize() * @generated */ void setSize(Size value); } // SizeReference