/** * * * * $Id$ */ package org.eclipse.papyrus.infra.core.sashwindows.di; import org.eclipse.emf.ecore.EObject; /** * A representation of the model object ' Position'. * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.infra.core.sashwindows.di.DiPackage#getPosition() * @model * @generated */ public interface Position extends EObject { /** * Returns the value of the 'X' attribute. *

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

* * * @return the value of the 'X' attribute. * @see #setX(int) * @see org.eclipse.papyrus.infra.core.sashwindows.di.DiPackage#getPosition_X() * @model unique="false" required="true" ordered="false" * @generated */ int getX(); /** * Sets the value of the ' {@link org.eclipse.papyrus.infra.core.sashwindows.di.Position#getX X}' * attribute. * * @param value * the new value of the 'X' attribute. * @see #getX() * @generated */ void setX(int value); /** * Returns the value of the 'Y' attribute. *

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

* * * @return the value of the 'Y' attribute. * @see #setY(int) * @see org.eclipse.papyrus.infra.core.sashwindows.di.DiPackage#getPosition_Y() * @model unique="false" dataType="org.eclipse.papyrus.infra.core.sashwindows.di.int" * required="true" ordered="false" * @generated */ int getY(); /** * Sets the value of the ' {@link org.eclipse.papyrus.infra.core.sashwindows.di.Position#getY Y}' * attribute. * * @param value * the new value of the 'Y' attribute. * @see #getY() * @generated */ void setY(int value); } // Position