MATSIM
pt
Wenden.java
Go to the documentation of this file.
1
2
/* *********************************************************************** *
3
* project: org.matsim.*
4
* Wenden.java
5
* *
6
* *********************************************************************** *
7
* *
8
* copyright : (C) 2019 by the members listed in the COPYING, *
9
* LICENSE and WARRANTY file. *
10
* email : info at matsim dot org *
11
* *
12
* *********************************************************************** *
13
* *
14
* This program is free software; you can redistribute it and/or modify *
15
* it under the terms of the GNU General Public License as published by *
16
* the Free Software Foundation; either version 2 of the License, or *
17
* (at your option) any later version. *
18
* See also COPYING, LICENSE and WARRANTY file *
19
* *
20
* *********************************************************************** */
21
22
package
org.matsim.pt;
23
24
import
org
.
matsim
.
core
.
population
.
routes
.
NetworkRoute
;
25
import
org
.
matsim
.
pt
.
transitSchedule
.
api
.
Departure
;
26
import
org
.
matsim
.
pt
.
transitSchedule
.
api
.
TransitLine
;
27
import
org
.
matsim
.
pt
.
transitSchedule
.
api
.
TransitRoute
;
28
29
public
class
Wenden
implements
UmlaufStueckI
{
30
31
private
NetworkRoute
route
;
32
33
public
Wenden
(
NetworkRoute
route) {
34
this.route =
route
;
35
}
36
37
@Override
38
public
Departure
getDeparture
() {
39
return
null;
40
}
41
42
@Override
43
public
TransitLine
getLine
() {
44
return
null;
45
}
46
47
@Override
48
public
TransitRoute
getRoute
() {
49
return
null;
50
}
51
52
@Override
53
public
NetworkRoute
getCarRoute
() {
54
return
route
;
55
}
56
57
@Override
58
public
boolean
isFahrt
() {
59
return
false
;
60
}
61
62
}
org.matsim.pt.transitSchedule.api
Definition:
Departure.java:21
org.matsim.core.population.routes
Definition:
AbstractNetworkRoute.java:1
org.matsim.core.population.routes.NetworkRoute
Definition:
NetworkRoute.java:37
org.matsim.pt
org.matsim.pt.Wenden
Definition:
Wenden.java:29
org.matsim.pt.Wenden.isFahrt
boolean isFahrt()
Definition:
Wenden.java:58
org
org.matsim.pt.Wenden.getCarRoute
NetworkRoute getCarRoute()
Definition:
Wenden.java:53
org.matsim.pt.Wenden.Wenden
Wenden(NetworkRoute route)
Definition:
Wenden.java:33
org.matsim.core.population
Definition:
ActivityImpl.java:21
org.matsim.pt.UmlaufStueckI
Definition:
UmlaufStueckI.java:27
org.matsim.pt.transitSchedule.api.Departure
Definition:
Departure.java:33
org.matsim.core
org.matsim.pt.Wenden.getDeparture
Departure getDeparture()
Definition:
Wenden.java:38
org.matsim.pt.transitSchedule
org.matsim.pt.Wenden.getLine
TransitLine getLine()
Definition:
Wenden.java:43
org.matsim.pt.transitSchedule.api.TransitLine
Definition:
TransitLine.java:34
org.matsim
org.matsim.pt.Wenden.getRoute
TransitRoute getRoute()
Definition:
Wenden.java:48
org.matsim.pt.transitSchedule.api.TransitRoute
Definition:
TransitRoute.java:36
org.matsim.pt.Wenden.route
NetworkRoute route
Definition:
Wenden.java:31
Generated by
1.8.13