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

* The following features are supported: *

* * * @see rba.view.RBAViewPackage#getOffset() * @model * @generated */ public interface Offset extends PackagableElement { /** * Returns the value of the 'X' attribute. * * * * * * @return the value of the 'X' attribute. * @see #isSetX() * @see #unsetX() * @see #setX(int) * @see rba.view.RBAViewPackage#getOffset_X() * @model unsettable="true" required="true" * @generated */ int getX(); /** * Sets the value of the '{@link rba.view.Offset#getX X}' attribute. * * * @param value the new value of the 'X' attribute. * @see #isSetX() * @see #unsetX() * @see #getX() * @generated */ void setX(int value); /** * Unsets the value of the '{@link rba.view.Offset#getX X}' attribute. * * * @see #isSetX() * @see #getX() * @see #setX(int) * @generated */ void unsetX(); /** * Returns whether the value of the '{@link rba.view.Offset#getX X}' attribute is set. * * * @return whether the value of the 'X' attribute is set. * @see #unsetX() * @see #getX() * @see #setX(int) * @generated */ boolean isSetX(); /** * Returns the value of the 'Y' attribute. * * * * * * @return the value of the 'Y' attribute. * @see #isSetY() * @see #unsetY() * @see #setY(int) * @see rba.view.RBAViewPackage#getOffset_Y() * @model unsettable="true" required="true" * @generated */ int getY(); /** * Sets the value of the '{@link rba.view.Offset#getY Y}' attribute. * * * @param value the new value of the 'Y' attribute. * @see #isSetY() * @see #unsetY() * @see #getY() * @generated */ void setY(int value); /** * Unsets the value of the '{@link rba.view.Offset#getY Y}' attribute. * * * @see #isSetY() * @see #getY() * @see #setY(int) * @generated */ void unsetY(); /** * Returns whether the value of the '{@link rba.view.Offset#getY Y}' attribute is set. * * * @return whether the value of the 'Y' attribute is set. * @see #unsetY() * @see #getY() * @see #setY(int) * @generated */ boolean isSetY(); /** * Returns the value of the 'Size' containment reference. * * * * * * @return the value of the 'Size' containment reference. * @see #setSize(SizeReference) * @see rba.view.RBAViewPackage#getOffset_Size() * @model containment="true" required="true" * @generated */ SizeReference getSize(); /** * Sets the value of the '{@link rba.view.Offset#getSize Size}' containment reference. * * * @param value the new value of the 'Size' containment reference. * @see #getSize() * @generated */ void setSize(SizeReference value); } // Offset