4dd4efe6ba
git-svn-id: https://osmand.googlecode.com/svn/trunk@636 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
23 lines
434 B
Java
23 lines
434 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;
|
|
}
|
|
|
|
}
|