/** * <copyright> * </copyright> * * $Id$ */ package at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Photo Area</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getX <em>X</em>}</li> * <li>{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getY <em>Y</em>}</li> * <li>{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getWidth <em>Width</em>}</li> * <li>{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getHeight <em>Height</em>}</li> * <li>{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getColor <em>Color</em>}</li> * <li>{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getDescription <em>Description</em>}</li> * </ul> * </p> * * @see at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoeditPackage#getPhotoArea() * @model * @generated */ public interface PhotoArea extends BaseObject { /** * Returns the value of the '<em><b>X</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>X</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>X</em>' attribute. * @see #setX(double) * @see at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoeditPackage#getPhotoArea_X() * @model * @generated */ double getX(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getX <em>X</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>X</em>' attribute. * @see #getX() * @generated */ void setX(double value); /** * Returns the value of the '<em><b>Y</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Y</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Y</em>' attribute. * @see #setY(double) * @see at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoeditPackage#getPhotoArea_Y() * @model * @generated */ double getY(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getY <em>Y</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Y</em>' attribute. * @see #getY() * @generated */ void setY(double value); /** * Returns the value of the '<em><b>Width</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Width</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Width</em>' attribute. * @see #setWidth(double) * @see at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoeditPackage#getPhotoArea_Width() * @model * @generated */ double getWidth(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getWidth <em>Width</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Width</em>' attribute. * @see #getWidth() * @generated */ void setWidth(double value); /** * Returns the value of the '<em><b>Height</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Height</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Height</em>' attribute. * @see #setHeight(double) * @see at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoeditPackage#getPhotoArea_Height() * @model * @generated */ double getHeight(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getHeight <em>Height</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Height</em>' attribute. * @see #getHeight() * @generated */ void setHeight(double value); /** * Returns the value of the '<em><b>Color</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Color</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Color</em>' attribute. * @see #setColor(String) * @see at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoeditPackage#getPhotoArea_Color() * @model * @generated */ String getColor(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getColor <em>Color</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Color</em>' attribute. * @see #getColor() * @generated */ void setColor(String value); /** * Returns the value of the '<em><b>Description</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Description</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Description</em>' attribute. * @see #setDescription(String) * @see at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoeditPackage#getPhotoArea_Description() * @model * @generated */ String getDescription(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoArea#getDescription <em>Description</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Description</em>' attribute. * @see #getDescription() * @generated */ void setDescription(String value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model * @generated */ boolean contains(double x, double y); } // PhotoArea