Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
make an io package
[simgrid.git] / examples / java / io / storage / Main.java
similarity index 89%
rename from examples/java/io/Storage.java
rename to examples/java/io/storage/Main.java
index 6b789b7..9b77b8d 100644 (file)
@@ -4,12 +4,12 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-package io;
+package io.storage;
 import org.simgrid.msg.Msg;
 import org.simgrid.msg.Host;
 import org.simgrid.msg.MsgException;
 
-public class Storage {
+public class Main {
   public static void main(String[] args) throws MsgException {
     Msg.init(args);
     if(args.length < 1) {
@@ -21,7 +21,7 @@ public class Storage {
     Msg.createEnvironment(args[0]);
 
     Host[] hosts = Host.all();
-    new io.Client(hosts[0],0).start();
+    new io.storage.Client(hosts[0],0).start();
 
     Msg.run();
     }