2011-05-07 22:56:11 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|