MATSIM
withinday
replanning
replanners
tools
ReplanningTask.java
Go to the documentation of this file.
1
/* *********************************************************************** *
2
* project: org.matsim.*
3
* ReplanningTask.java
4
* *
5
* *********************************************************************** *
6
* *
7
* copyright : (C) 2008 by the members listed in the COPYING, *
8
* LICENSE and WARRANTY file. *
9
* email : info at matsim dot org *
10
* *
11
* *********************************************************************** *
12
* *
13
* This program is free software; you can redistribute it and/or modify *
14
* it under the terms of the GNU General Public License as published by *
15
* the Free Software Foundation; either version 2 of the License, or *
16
* (at your option) any later version. *
17
* See also COPYING, LICENSE and WARRANTY file *
18
* *
19
* *********************************************************************** */
20
21
package
org.matsim.withinday.replanning.replanners.tools;
22
23
import
org
.
matsim
.
api
.
core
.
v01
.
Id
;
24
import
org
.
matsim
.
core
.
mobsim
.
framework
.
MobsimAgent
;
25
import
org
.
matsim
.
withinday
.
replanning
.
replanners
.
interfaces
.
WithinDayReplanner
;
26
27
public
class
ReplanningTask
{
28
29
protected
MobsimAgent
agentToReplan
;
30
protected
Id<WithinDayReplanner>
withinDayReplannerId
;
31
32
public
ReplanningTask
(
MobsimAgent
agentToReplan,
Id<WithinDayReplanner>
withinDayReplannerId) {
33
this.agentToReplan =
agentToReplan
;
34
this.withinDayReplannerId =
withinDayReplannerId
;
35
}
36
37
public
MobsimAgent
getAgentToReplan
() {
38
return
this.
agentToReplan
;
39
}
40
41
public
Id<WithinDayReplanner>
getWithinDayReplannerId
() {
42
return
this.
withinDayReplannerId
;
43
}
44
}
org.matsim.api.core.v01.Id
Definition:
Id.java:44
org.matsim.withinday.replanning.replanners.tools.ReplanningTask.getWithinDayReplannerId
Id< WithinDayReplanner > getWithinDayReplannerId()
Definition:
ReplanningTask.java:41
org.matsim.core.mobsim.framework
Definition:
AbstractMobsimModule.java:22
org
org.matsim.core.mobsim.framework.MobsimAgent
Definition:
MobsimAgent.java:41
org.matsim.core.mobsim
Definition:
DefaultMobsimModule.java:23
org.matsim.api
org.matsim.withinday.replanning
org.matsim.withinday.replanning.replanners.tools.ReplanningTask.agentToReplan
MobsimAgent agentToReplan
Definition:
ReplanningTask.java:29
org.matsim.core
org.matsim.withinday
org.matsim.api.core
org.matsim.withinday.replanning.replanners.tools.ReplanningTask
Definition:
ReplanningTask.java:27
org.matsim.withinday.replanning.replanners.tools.ReplanningTask.withinDayReplannerId
Id< WithinDayReplanner > withinDayReplannerId
Definition:
ReplanningTask.java:30
org.matsim.withinday.replanning.replanners.tools.ReplanningTask.ReplanningTask
ReplanningTask(MobsimAgent agentToReplan, Id< WithinDayReplanner > withinDayReplannerId)
Definition:
ReplanningTask.java:32
org.matsim.withinday.replanning.replanners
Definition:
CurrentLegReplanner.java:21
org.matsim.withinday.replanning.replanners.tools.ReplanningTask.getAgentToReplan
MobsimAgent getAgentToReplan()
Definition:
ReplanningTask.java:37
org.matsim.withinday.replanning.replanners.interfaces
Definition:
WithinDayDuringActivityReplanner.java:21
org.matsim
org.matsim.withinday.replanning.replanners.interfaces.WithinDayReplanner
Definition:
WithinDayReplanner.java:38
org.matsim.api.core.v01
Definition:
BasicLocation.java:20
Generated by
1.8.13