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

17 lines
330 B
Java

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;
}
}