OsmAnd/OsmAnd-java/src/net/osmand/data/TransportStop.java

18 lines
330 B
Java
Raw Normal View History

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