X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bdfe4f8674f98efbf2d67ad854ef83a1d5f855ed..ffb152ddb9e70873da098de4577e64a2595f4697:/src/bindings/java/org/simgrid/msg/As.java diff --git a/src/bindings/java/org/simgrid/msg/As.java b/src/bindings/java/org/simgrid/msg/As.java index 0ce553261f..35248f8cb0 100644 --- a/src/bindings/java/org/simgrid/msg/As.java +++ b/src/bindings/java/org/simgrid/msg/As.java @@ -1,41 +1,36 @@ -/* - * Bindings to the MSG hosts - * - * Copyright (c) 2006-2013. 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; + + protected As() { }; - public String toString (){ - return this.getName(); - } - public native String getName(); + public String toString (){ + return this.getName(); + } + public native String getName(); - public native As[] getSons(); + public native As[] getSons(); - public native String getProperty(String name); + public native String getProperty(String name); - public native String getModel(); + public native String getModel(); - 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(); + } }