/* license-start * * Copyright (C) 2008 - 2013 Crispico, <http://www.crispico.com/>. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details, at <http://www.gnu.org/licenses/>. * * Contributors: * Crispico - Initial API and implementation * * license-end */ /** * <copyright> * </copyright> * * $Id$ */ package org.flowerplatform.emf_model.notation; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Location</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.flowerplatform.emf_model.notation.Location#getX <em>X</em>}</li> * <li>{@link org.flowerplatform.emf_model.notation.Location#getY <em>Y</em>}</li> * </ul> * </p> * * @see org.flowerplatform.emf_model.notation.NotationPackage#getLocation() * @model * @generated */ public interface Location extends NotationElement, LayoutConstraint { /** * 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(int) * @see org.flowerplatform.emf_model.notation.NotationPackage#getLocation_X() * @model * @generated */ int getX(); /** * Sets the value of the '{@link org.flowerplatform.emf_model.notation.Location#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(int 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(int) * @see org.flowerplatform.emf_model.notation.NotationPackage#getLocation_Y() * @model * @generated */ int getY(); /** * Sets the value of the '{@link org.flowerplatform.emf_model.notation.Location#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(int value); } // Location