Package trackerModule.test

Source Code of trackerModule.test.Simulation_test

package trackerModule.test;
 
import trackerModule.sim.map.MapFrame;
import trackerModule.sim.tracker.World; 

/**
* The Class Simulation_test.
*/
public class Simulation_test {

  /**
   * Instantiates a new simulation_test.
   */
  public Simulation_test() {
  }
 
  /**
   * Test_ gui.
   */
  public void test_GUI(){
   
    World.This().loadWorld_Route();
    World.This().initShortestPath();
    World.This().initNearestFishingAreas();
    World.This().createShipsByScenario(10, "Bombing", "IllicitCargo");
    new MapFrame("PROGNOS Simulator", "/maps/ArabianSea6000x3000.bmp");
   
  //  World.This().load("World_Route.map");
  ///  World.This().createShipsByScenario(10, "Bombing", "IllicitCargo");
  //  new MapFrame("PROGNOS Simulator");
  }
   
  /**
   * The main method.
   *
   * @param args the arguments
   */
  public static void main(String[] args) {
    Simulation_test T = new Simulation_test();
    T.test_GUI();
  }
}
TOP

Related Classes of trackerModule.test.Simulation_test

TOP
Copyright © 2018 www.massapi.com. 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.