package buslines;

import java.util.Date;

/**
 * @author Daniel "3ICE" Berezvai
 */
public class Stop {

private final Station station;
private final Date timestamp;

public Stop(Station station, Date timestamp) {
  this.station = station;
  this.timestamp = timestamp;
}

public String getName() {
  return station.getName();
}

public Station getStation() {
  return station;
}

public int passengerCount() {
  return station.size();
}

public Passenger getPassenger(int i) {
  return station.get(i);
}

public Passenger passengerBoard(int i) {
  return station.passengerBoard(i);
}

public Date getTimestamp() {
  return timestamp;
}
}
