OsmAnd/DataExtractionOSM/src/net/osmand/data/TransportStop.java
Victor Shcherb 4dd4efe6ba implement binary transport reader
git-svn-id: https://osmand.googlecode.com/svn/trunk@636 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
2010-11-06 12:42:46 +00:00

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