MATSIM
api
core
v01
population
Plan.java
Go to the documentation of this file.
1
/* *********************************************************************** *
2
* project: org.matsim.*
3
* Plan.java
4
* *
5
* *********************************************************************** *
6
* *
7
* copyright : (C) 2007, 2009 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.api.core.v01.population;
22
23
import
java.util.List;
24
25
import
org
.
matsim
.
api
.
core
.
v01
.
Customizable
;
26
import
org
.
matsim
.
api
.
core
.
v01
.
Id
;
27
import
org
.
matsim
.
api
.
core
.
v01
.
Identifiable
;
28
import
org
.
matsim
.
core
.
api
.
internal
.
MatsimPopulationObject
;
29
import
org
.
matsim
.
utils
.
objectattributes
.
attributable
.
Attributable
;
30
39
public
interface
Plan
extends
MatsimPopulationObject
,
Customizable
,
BasicPlan
,
Attributable
,
Identifiable
<Plan> {
40
41
List<PlanElement>
getPlanElements
();
42
43
void
addLeg
(
final
Leg
leg );
44
45
void
addActivity
(
final
Activity
act );
46
47
void
setType
(
final
String type );
48
49
void
setPlanId
(
Id<Plan>
planId );
50
51
Id<Plan>
getId
();
52
53
int
getIterationCreated
();
54
55
void
setIterationCreated
(
int
iteration );
56
57
String
getPlanMutator
();
58
59
void
setPlanMutator
( String planMutator );
60
61
Person
getPerson
();
62
69
void
setPerson
(
Person
person );
70
71
72
}
org.matsim.api.core.v01.Id
Definition:
Id.java:44
org.matsim.utils.objectattributes.attributable.Attributable
Definition:
Attributable.java:27
org.matsim.core.api.internal.MatsimPopulationObject
Definition:
MatsimPopulationObject.java:27
org.matsim.api.core.v01.population.BasicPlan
Definition:
BasicPlan.java:24
org
org.matsim.api.core.v01.population.Plan.addLeg
void addLeg(final Leg leg)
org.matsim.api.core.v01.Identifiable
Definition:
Identifiable.java:23
org.matsim.core.api.internal
Definition:
MatsimComparator.java:21
org.matsim.utils
org.matsim.api.core.v01.population.Plan.setIterationCreated
void setIterationCreated(int iteration)
org.matsim.utils.objectattributes
org.matsim.api.core.v01.population.Plan.setPerson
void setPerson(Person person)
org.matsim.api.core.v01.population.Plan.setPlanMutator
void setPlanMutator(String planMutator)
org.matsim.api
org.matsim.core
org.matsim.api.core.v01.population.Activity
Definition:
Activity.java:32
org.matsim.utils.objectattributes.attributable
Definition:
Attributable.java:22
org.matsim.api.core
org.matsim.api.core.v01.population.Plan.addActivity
void addActivity(final Activity act)
org.matsim.api.core.v01.population.Plan.getPlanElements
List< PlanElement > getPlanElements()
org.matsim.api.core.v01.population.Plan.getPerson
Person getPerson()
org.matsim.api.core.v01.population.Leg
Definition:
Leg.java:25
org.matsim.api.core.v01.population.Plan.setPlanId
void setPlanId(Id< Plan > planId)
org.matsim.core.api
org.matsim.api.core.v01.population.Plan.getPlanMutator
String getPlanMutator()
org.matsim
org.matsim.api.core.v01.population.Plan.setType
void setType(final String type)
org.matsim.api.core.v01.population.Plan
Definition:
Plan.java:39
org.matsim.api.core.v01.population.Plan.getIterationCreated
int getIterationCreated()
org.matsim.api.core.v01.population.Person
Definition:
Person.java:28
org.matsim.api.core.v01
Definition:
BasicLocation.java:20
org.matsim.api.core.v01.population.Plan.getId
Id< Plan > getId()
org.matsim.api.core.v01.Customizable
Definition:
Customizable.java:43
Generated by
1.8.13