schedule-router proptotype

This commit is contained in:
Arndt 2015-04-03 13:49:53 +02:00
parent 0316c41924
commit 55f8e7fb4a
18 changed files with 2359 additions and 0 deletions

View file

@ -0,0 +1,33 @@
/**
* Container for link between two Osm nodes (pre-pocessor version)
*
* @author ab
*/
package btools.memrouter;
public class ScheduledLink extends OsmLinkP
{
public ScheduledLink( StationNode source, StationNode target )
{
super( source, target );
}
public ScheduledLine line;
public int indexInLine;
public boolean isConnection()
{
return false;
}
public boolean isWayLink()
{
return false;
}
public String toString()
{
return "ScheduledLink: line=" + line.name + " indexInLine=" + indexInLine;
}
}