X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/21719ff0ef7f55b1862f22f83c3f2a93e9fc1572..6d3f12ae629969d1ede04070ba244377e3cf434d:/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 7b7340492c..8d4b1347a0 100644 --- a/src/bindings/java/org/simgrid/msg/VM.java +++ b/src/bindings/java/org/simgrid/msg/VM.java @@ -34,17 +34,16 @@ public class VM extends Host{ /** * Create a VM - * @param host, Host node - * @param name, name of the machine - * @param nCore, number of core - * @param ramSize, size of the RAM that should be allocated (in MBytes) + * @param host Host node + * @param name name of the machine + * @param nCore number of core + * @param ramSize size of the RAM that should be allocated (in MBytes) * @param netCap (not used for the moment) * @param diskPath (not used for the moment) * @param diskSize (not used for the moment) * @param migNetSpeed (network bandwith 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 nCore, int ramSize, int netCap, String diskPath, int diskSize, int migNetSpeed, int dpIntensity){ super(); @@ -117,8 +116,8 @@ public class VM extends Host{ /** * Natively implemented method create the VM. - * @param nCore, number of core - * @param ramSize, size of the RAM that should be allocated (in MB) + * @param nCore number of core + * @param ramSize size of the RAM that should be allocated (in MB) * @param netCap (not used for the moment) * @param diskPath (not used for the moment) * @param diskSize (not used for the moment) @@ -131,7 +130,7 @@ public class VM extends Host{ /** * Bound the VM to a certain % of its vcpu capability (e.g. 75% of vm.getSpeed()) - * @param load, percentage (between [0,100] + * @param load percentage (between [0,100] */ public native void setBound(int load);