Package se.sj.ipl.rollingstock.domain

Examples of se.sj.ipl.rollingstock.domain.Vehicle


      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");
View Full Code Here

TOP

Related Classes of se.sj.ipl.rollingstock.domain.Vehicle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.