/** * Copyright (C) 2009-2013 BIMserver.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.bimserver.models.store; import org.bimserver.emf.IdEObject; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Geo Tag</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.bimserver.models.store.GeoTag#getEnabled <em>Enabled</em>}</li> * <li>{@link org.bimserver.models.store.GeoTag#getProjects <em>Projects</em>}</li> * <li>{@link org.bimserver.models.store.GeoTag#getX <em>X</em>}</li> * <li>{@link org.bimserver.models.store.GeoTag#getY <em>Y</em>}</li> * <li>{@link org.bimserver.models.store.GeoTag#getZ <em>Z</em>}</li> * <li>{@link org.bimserver.models.store.GeoTag#getEpsg <em>Epsg</em>}</li> * <li>{@link org.bimserver.models.store.GeoTag#getDirectionAngle <em>Direction Angle</em>}</li> * </ul> * </p> * * @see org.bimserver.models.store.StorePackage#getGeoTag() * @model * @extends IdEObject * @generated */ public interface GeoTag extends IdEObject { /** * Returns the value of the '<em><b>Enabled</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Enabled</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Enabled</em>' attribute. * @see #setEnabled(Boolean) * @see org.bimserver.models.store.StorePackage#getGeoTag_Enabled() * @model * @generated */ Boolean getEnabled(); /** * Sets the value of the '{@link org.bimserver.models.store.GeoTag#getEnabled <em>Enabled</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Enabled</em>' attribute. * @see #getEnabled() * @generated */ void setEnabled(Boolean value); /** * Returns the value of the '<em><b>Projects</b></em>' reference list. * The list contents are of type {@link org.bimserver.models.store.Project}. * It is bidirectional and its opposite is '{@link org.bimserver.models.store.Project#getGeoTag <em>Geo Tag</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Projects</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Projects</em>' reference list. * @see org.bimserver.models.store.StorePackage#getGeoTag_Projects() * @see org.bimserver.models.store.Project#getGeoTag * @model opposite="geoTag" * @generated */ EList<Project> getProjects(); /** * 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 org.bimserver.models.store.StorePackage#getGeoTag_X() * @model * @generated */ Double getX(); /** * Sets the value of the '{@link org.bimserver.models.store.GeoTag#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 org.bimserver.models.store.StorePackage#getGeoTag_Y() * @model * @generated */ Double getY(); /** * Sets the value of the '{@link org.bimserver.models.store.GeoTag#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>Z</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Z</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Z</em>' attribute. * @see #setZ(Double) * @see org.bimserver.models.store.StorePackage#getGeoTag_Z() * @model * @generated */ Double getZ(); /** * Sets the value of the '{@link org.bimserver.models.store.GeoTag#getZ <em>Z</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Z</em>' attribute. * @see #getZ() * @generated */ void setZ(Double value); /** * Returns the value of the '<em><b>Epsg</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Epsg</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Epsg</em>' attribute. * @see #setEpsg(Integer) * @see org.bimserver.models.store.StorePackage#getGeoTag_Epsg() * @model * @generated */ Integer getEpsg(); /** * Sets the value of the '{@link org.bimserver.models.store.GeoTag#getEpsg <em>Epsg</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Epsg</em>' attribute. * @see #getEpsg() * @generated */ void setEpsg(Integer value); /** * Returns the value of the '<em><b>Direction Angle</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Direction Angle</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Direction Angle</em>' attribute. * @see #setDirectionAngle(Double) * @see org.bimserver.models.store.StorePackage#getGeoTag_DirectionAngle() * @model * @generated */ Double getDirectionAngle(); /** * Sets the value of the '{@link org.bimserver.models.store.GeoTag#getDirectionAngle <em>Direction Angle</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Direction Angle</em>' attribute. * @see #getDirectionAngle() * @generated */ void setDirectionAngle(Double value); } // GeoTag