OsmAnd/DataExtractionOSM/src/net/osmand/data/TransportStop.java
2011-05-07 22:56:11 +02:00

23 lines
411 B
Java

package net.osmand.data;
import net.osmand.osm.Entity;
public class TransportStop extends MapObject {
int[] referencesToRoutes = null;
public TransportStop(Entity e){
super(e);
}
public TransportStop(){
}
public int[] getReferencesToRoutes() {
return referencesToRoutes;
}
public void setReferencesToRoutes(int[] referencesToRoutes) {
this.referencesToRoutes = referencesToRoutes;
}
}