Package | Description |
---|---|
model.environment.objects.area |
Airport areas.
|
model.environment.objects.flight |
Flight related classes.
|
simulation.simulation.util |
Simulation utilities.
|
util.analytics |
The analytics package contains classes that analyze parameters of the
simulation.
|
Modifier and Type | Field and Description |
---|---|
private QueuingArea |
BorderControlGateArea.borderControlQueue
The queing area.
|
Modifier and Type | Method and Description |
---|---|
QueuingArea |
BorderControlGateArea.getBorderControlQueue()
Gets the border control queue.
|
Constructor and Description |
---|
BorderControlGateArea(double topX,
double topY,
double width,
double height,
java.util.List<Desk> borderControlDesks,
QueuingArea borderControlQueue)
Creates a rectangular gate area from a specified (x,y) coordinate, width
and height.
|
BorderControlGateArea(int gateNumber,
double topX,
double topY,
double width,
double height,
java.util.List<Desk> borderControlDesks,
QueuingArea borderControlQueue)
Creates a rectangular gate area from a specified (x,y) coordinate, width
and height.
|
BorderControlGateArea(int gateNumber,
java.util.List<Position> corners,
java.util.List<Desk> borderControlDesks,
QueuingArea borderControlQueue)
Creates the area with a set of specified corner points.
|
BorderControlGateArea(java.util.List<Position> corners,
java.util.List<Desk> borderControlDesks,
QueuingArea borderControlQueue)
Creates the area with a set of specified corner points.
|
Modifier and Type | Field and Description |
---|---|
private QueuingArea |
Flight.checkInQueue
The check in queuing area.
|
private QueuingArea |
Flight.checkPointQueue
The checkpoint queuing area.
|
Modifier and Type | Method and Description |
---|---|
QueuingArea |
Flight.getCheckInQueue()
Gets the check in queue.
|
QueuingArea |
Flight.getCheckPointQueue()
Gets the checkpoint queue.
|
Constructor and Description |
---|
Flight(FlightType flightType,
double flightTime,
GateArea gateArea,
java.util.Collection<Desk> checkInDesks,
QueuingArea checkInQueue,
QueuingArea checkpointQueue)
Creates a new flight.
|
Flight(FlightType flightType,
int size,
double flightTime,
GateArea gateArea,
java.util.Collection<Desk> checkInDesks,
QueuingArea checkInQueue,
QueuingArea checkpointQueue)
Creates a new flight.
|
Modifier and Type | Method and Description |
---|---|
static QueuingArea |
Utilities.getClosestQueuingArea(java.util.Collection<? extends PhysicalMapComponent> mapComponents,
java.util.Collection<QueuingArea> queues)
Gets the closest queuing area.
|
Modifier and Type | Method and Description |
---|---|
static QueuingArea |
Utilities.getClosestQueuingArea(java.util.Collection<? extends PhysicalMapComponent> mapComponents,
java.util.Collection<QueuingArea> queues)
Gets the closest queuing area.
|
Modifier and Type | Field and Description |
---|---|
private java.util.List<QueuingArea> |
TimeInQueueAnalyzer.queues
The queues.
|
private java.util.List<QueuingArea> |
QueueAnalyzer.queues
The queues.
|
Modifier and Type | Method and Description |
---|---|
private int |
QueueAnalyzer.getNumberOfPassengersInQueue(QueuingArea queue)
Gets the number of passengers in a queue.
|