X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/12481182b50742100ff082caace772c17b593bbe..4e62e76d104a17f0c9aaf9135ac605e9c8c87141:/src/bindings/java/org/simgrid/msg/VM.java diff --git a/src/bindings/java/org/simgrid/msg/VM.java b/src/bindings/java/org/simgrid/msg/VM.java index 7804e9fece..8ab6a27718 100644 --- a/src/bindings/java/org/simgrid/msg/VM.java +++ b/src/bindings/java/org/simgrid/msg/VM.java @@ -14,7 +14,7 @@ public class VM extends Host { private int coreAmount = 1; /** - * Create a `basic' VM : 1 core and 1GB of RAM. + * Create a `basic` VM : 1 core and 1GB of RAM. * @param host Host node * @param name name of the machine */ @@ -37,7 +37,7 @@ public class VM extends Host { * @param host Host node * @param name name of the machine * @param ramSize size of the RAM that should be allocated (in MBytes) - * @param migNetSpeed (network bandwith allocated for migrations in MB/s, if you don't know put zero ;)) + * @param migNetSpeed (network bandwidth allocated for migrations in MB/s, if you don't know put zero ;)) * @param dpIntensity (dirty page percentage according to migNetSpeed, [0-100], if you don't know put zero ;)) */ public VM(Host host, String name, int ramSize, int migNetSpeed, int dpIntensity){ @@ -50,7 +50,7 @@ public class VM extends Host { * @param name name of the machine * @param coreAmount the amount of cores of the VM * @param ramSize size of the RAM that should be allocated (in MBytes) - * @param migNetSpeed (network bandwith allocated for migrations in MB/s, if you don't know put zero ;)) + * @param migNetSpeed (network bandwidth allocated for migrations in MB/s, if you don't know put zero ;)) * @param dpIntensity (dirty page percentage according to migNetSpeed, [0-100], if you don't know put zero ;)) */ public VM(Host host, String name, int coreAmount, int ramSize, int migNetSpeed, int dpIntensity){ @@ -67,7 +67,11 @@ public class VM extends Host { /** Retrieve a VM from its name */ public static native VM getVMByName(String name); - /* Make sure that the GC also destroys the C object */ + /** + * Make sure that the GC also destroys the C object + * @deprecated (from Java9 onwards) + */ + @Deprecated @Override protected void finalize() throws Throwable { nativeFinalize(); } @@ -93,7 +97,7 @@ public class VM extends Host { /** * Natively implemented method create the VM. * @param ramSize size of the RAM that should be allocated (in MB) - * @param migNetSpeed (network bandwith allocated for migrations in MB/s, if you don't know put zero ;)) + * @param migNetSpeed (network bandwidth allocated for migrations in MB/s, if you don't know put zero ;)) * @param dpIntensity (dirty page intensity, a percentage of migNetSpeed [0-100], if you don't know put zero ;)) */ private native void create(Host host, String name, int coreAmount, int ramSize, int migNetSpeed, int dpIntensity);