/** * <copyright> * </copyright> * * $Id$ */ package org.openstreetmap.osm; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Node</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.openstreetmap.osm.Node#getLatitude <em>Latitude</em>}</li> * <li>{@link org.openstreetmap.osm.Node#getLongitude <em>Longitude</em>}</li> * </ul> * </p> * * @see org.openstreetmap.osm.OsmPackage#getNode() * @model * @generated */ public interface Node extends OSMElement { /** * Returns the value of the '<em><b>Latitude</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Latitude</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Latitude</em>' attribute. * @see #setLatitude(float) * @see org.openstreetmap.osm.OsmPackage#getNode_Latitude() * @model extendedMetaData="name='lat'" * @generated */ float getLatitude(); /** * Sets the value of the '{@link org.openstreetmap.osm.Node#getLatitude <em>Latitude</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Latitude</em>' attribute. * @see #getLatitude() * @generated */ void setLatitude(float value); /** * Returns the value of the '<em><b>Longitude</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Longitude</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Longitude</em>' attribute. * @see #setLongitude(float) * @see org.openstreetmap.osm.OsmPackage#getNode_Longitude() * @model extendedMetaData="name='lon' namespace=''" * @generated */ float getLongitude(); /** * Sets the value of the '{@link org.openstreetmap.osm.Node#getLongitude <em>Longitude</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Longitude</em>' attribute. * @see #getLongitude() * @generated */ void setLongitude(float value); } // Node