System.out.println( "RollingstockId : " + rollingstock.getRollingstockId() );
System.out.println( "Schedule : " + rollingstock.getSchedule() );
List<Vehicle> vehicles = rollingstock.getVehicles();
for ( int y = 0 ; y < vehicles.size() ; y ++ )
{
Vehicle vehicle = vehicles.get( y );
System.out.println( "Vehicle : " + y + ": " + vehicle );
}
System.out.println( "Route : " + rollingstock.getRoute() );
}
System.out.println( "======================================\n\n");