schedule-router proptotype
This commit is contained in:
parent
0316c41924
commit
55f8e7fb4a
18 changed files with 2359 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue