Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Acknoledge the fact that JniException is a runtime exception now: kill all its occure...
[simgrid.git] / examples / java / basic / BasicTest.java
1 /*
2  * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. 
6  */
7
8 import simgrid.msg.*;
9
10 public class BasicTest {
11    
12    /* This only contains the launcher. If you do nothing more than than you can run 
13     *   java simgrid.msg.Msg
14     * which also contains such a launcher
15     */
16    
17     public static void main(String[] args) throws NativeException {
18        
19        /* initialize the MSG simulation. Must be done before anything else (even logging). */
20        Msg.init(args);
21
22        if(args.length < 2) {
23                 
24           Msg.info("Usage   : Basic platform_file deployment_file");
25           Msg.info("example : Basic basic_platform.xml basic_deployment.xml");
26           System.exit(1);
27        }
28                 
29         /* construct the platform and deploy the application */
30         Msg.createEnvironment(args[0]);
31         Msg.deployApplication(args[1]);
32                 
33         /*  execute the simulation. */
34         Msg.run();
35     }
36 }