Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr/gitroot/simgrid/simgrid
[simgrid.git] / src / bindings / java / org / simgrid / msg / As.java
index e8a7a98..16c6889 100644 (file)
@@ -8,29 +8,28 @@ package org.simgrid.msg;
 
 public class As {
 
-    private long bind;
-    
-    protected As() {
-       };
+       private long bind;
 
-    public String toString (){
-       return this.getName(); 
-    }
-    public native String getName();
+       protected As() {
+       };
 
-    public native As[] getSons();
+       @Override
+       public String toString (){
+               return this.getName(); 
+       }
+       public native String getName();
 
-    public native String getProperty(String name);
+       public native As[] getSons();
 
-    public native String getModel();
+       public native String getProperty(String name);
 
-    public native Host[] getHosts();
+       public native Host[] getHosts();
 
-    /**
-      * Class initializer, to initialize various JNI stuff
-      */
-    public static native void nativeInit();
-    static {
-       nativeInit();
-    }
+       /**
+        * Class initializer, to initialize various JNI stuff
+        */
+       public static native void nativeInit();
+       static {
+               nativeInit();
+       }
 }