/** */ package rba.view; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Position Container'. * * * * * * *

* The following features are supported: *

* * * @see rba.view.RBAViewPackage#getPositionContainer() * @model * @generated */ public interface PositionContainer extends EObject { /** * 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#getPositionContainer_X() * @model unsettable="true" required="true" * @generated */ int getX(); /** * Sets the value of the '{@link rba.view.PositionContainer#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.PositionContainer#getX X}' attribute. * * * @see #isSetX() * @see #getX() * @see #setX(int) * @generated */ void unsetX(); /** * Returns whether the value of the '{@link rba.view.PositionContainer#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#getPositionContainer_Y() * @model unsettable="true" required="true" * @generated */ int getY(); /** * Sets the value of the '{@link rba.view.PositionContainer#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.PositionContainer#getY Y}' attribute. * * * @see #isSetY() * @see #getY() * @see #setY(int) * @generated */ void unsetY(); /** * Returns whether the value of the '{@link rba.view.PositionContainer#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 'Base Point' attribute. * The literals are from the enumeration {@link rba.view.BasePoint}. * * * * * * @return the value of the 'Base Point' attribute. * @see rba.view.BasePoint * @see #setBasePoint(BasePoint) * @see rba.view.RBAViewPackage#getPositionContainer_BasePoint() * @model * @generated */ BasePoint getBasePoint(); /** * Sets the value of the '{@link rba.view.PositionContainer#getBasePoint Base Point}' attribute. * * * @param value the new value of the 'Base Point' attribute. * @see rba.view.BasePoint * @see #getBasePoint() * @generated */ void setBasePoint(BasePoint value); /** * Returns the value of the 'Area' reference. * *

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

* * @return the value of the 'Area' reference. * @see #setArea(Area) * @see rba.view.RBAViewPackage#getPositionContainer_Area() * @model required="true" * @generated */ Area getArea(); /** * Sets the value of the '{@link rba.view.PositionContainer#getArea Area}' reference. * * * @param value the new value of the 'Area' reference. * @see #getArea() * @generated */ void setArea(Area value); /** * Returns the value of the 'Offset' containment reference list. * The list contents are of type {@link rba.view.Offset}. * * * * * * @return the value of the 'Offset' containment reference list. * @see rba.view.RBAViewPackage#getPositionContainer_Offset() * @model containment="true" * @generated */ EList getOffset(); } // PositionContainer