Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[simgrid.git] / src / bindings / java / org / simgrid / msg / As.java
index f895e1a..40b68dc 100644 (file)
@@ -1,41 +1,34 @@
-/*
- * Bindings to the MSG hosts
- *
- * Copyright 2006-2012 The SimGrid Team           
- * All right reserved. 
- *
- * 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. 
- *
- */  
+/* Copyright (c) 2006-2014. The SimGrid Team.
+ * All rights reserved.                                                     */
+
+/* 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 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();
+       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();
+       }
 }