/** * <copyright> * </copyright> * * $Id$ */ package org.openstreetmap.osm; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>OSM</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.openstreetmap.osm.OSM#getNodes <em>Nodes</em>}</li> * <li>{@link org.openstreetmap.osm.OSM#getWays <em>Ways</em>}</li> * <li>{@link org.openstreetmap.osm.OSM#getRelations <em>Relations</em>}</li> * <li>{@link org.openstreetmap.osm.OSM#getBounds <em>Bounds</em>}</li> * <li>{@link org.openstreetmap.osm.OSM#getVersion <em>Version</em>}</li> * <li>{@link org.openstreetmap.osm.OSM#getGenerator <em>Generator</em>}</li> * </ul> * </p> * * @see org.openstreetmap.osm.OsmPackage#getOSM() * @model extendedMetaData="name='osm'" * @generated */ public interface OSM extends EObject { /** * Returns the value of the '<em><b>Nodes</b></em>' containment reference list. * The list contents are of type {@link org.openstreetmap.osm.Node}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Nodes</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Nodes</em>' containment reference list. * @see org.openstreetmap.osm.OsmPackage#getOSM_Nodes() * @model containment="true" * extendedMetaData="name='node' kind='element'" * @generated */ EList<Node> getNodes(); /** * Returns the value of the '<em><b>Ways</b></em>' containment reference list. * The list contents are of type {@link org.openstreetmap.osm.Way}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Ways</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Ways</em>' containment reference list. * @see org.openstreetmap.osm.OsmPackage#getOSM_Ways() * @model containment="true" * extendedMetaData="name='way' kind='element'" * @generated */ EList<Way> getWays(); /** * Returns the value of the '<em><b>Relations</b></em>' containment reference list. * The list contents are of type {@link org.openstreetmap.osm.Relation}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Relations</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Relations</em>' containment reference list. * @see org.openstreetmap.osm.OsmPackage#getOSM_Relations() * @model containment="true" * extendedMetaData="name='relation' kind='element'" * @generated */ EList<Relation> getRelations(); /** * Returns the value of the '<em><b>Bounds</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Bounds</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Bounds</em>' reference. * @see #setBounds(Bounds) * @see org.openstreetmap.osm.OsmPackage#getOSM_Bounds() * @model * @generated */ Bounds getBounds(); /** * Sets the value of the '{@link org.openstreetmap.osm.OSM#getBounds <em>Bounds</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Bounds</em>' reference. * @see #getBounds() * @generated */ void setBounds(Bounds value); /** * Returns the value of the '<em><b>Version</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Version</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Version</em>' attribute. * @see #setVersion(String) * @see org.openstreetmap.osm.OsmPackage#getOSM_Version() * @model * @generated */ String getVersion(); /** * Sets the value of the '{@link org.openstreetmap.osm.OSM#getVersion <em>Version</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Version</em>' attribute. * @see #getVersion() * @generated */ void setVersion(String value); /** * Returns the value of the '<em><b>Generator</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Generator</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Generator</em>' attribute. * @see #setGenerator(String) * @see org.openstreetmap.osm.OsmPackage#getOSM_Generator() * @model * @generated */ String getGenerator(); /** * Sets the value of the '{@link org.openstreetmap.osm.OSM#getGenerator <em>Generator</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Generator</em>' attribute. * @see #getGenerator() * @generated */ void setGenerator(String value); } // OSM