From: Arnaud Giersch Date: Fri, 25 Apr 2014 12:47:45 +0000 (+0200) Subject: Fix some javadoc warnings (remains 2). X-Git-Tag: v3_11~98^2~28 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3ae3b1a42c1305e99e39929b4bdd3d80c7f6770e Fix some javadoc warnings (remains 2). --- diff --git a/src/bindings/java/org/simgrid/surf/Action.java b/src/bindings/java/org/simgrid/surf/Action.java index d81b2ba23e..911a8d3188 100644 --- a/src/bindings/java/org/simgrid/surf/Action.java +++ b/src/bindings/java/org/simgrid/surf/Action.java @@ -109,7 +109,7 @@ public class Action { /** - * @param TODO + * @param bound TODO */ public void setBound(double bound) { SurfJNI.Action_setBound(swigCPtr, this, bound); @@ -134,7 +134,7 @@ public class Action { /** - * @param The new priority of the action + * @param priority The new priority of the action */ public void setPriority(double priority) { SurfJNI.Action_setPriority(swigCPtr, this, priority); @@ -142,7 +142,7 @@ public class Action { /** - * @param The new state + * @param state The new state */ public void setState(ActionState state) { SurfJNI.Action_setState(swigCPtr, this, state.swigValue()); diff --git a/src/bindings/java/org/simgrid/surf/Cpu.java b/src/bindings/java/org/simgrid/surf/Cpu.java index 82ce3e2915..61a2d5460d 100644 --- a/src/bindings/java/org/simgrid/surf/Cpu.java +++ b/src/bindings/java/org/simgrid/surf/Cpu.java @@ -60,7 +60,7 @@ public class Cpu extends Resource { * A cpu constructor (using LMM) * @param model * @param name - * @param properties + * @param props * @param constraint * @param core * @param powerPeak @@ -76,7 +76,7 @@ public class Cpu extends Resource { * A cpu constructor * @param model * @param name - * @param properties + * @param props * @param core * @param powerPeak * @param powerScale @@ -160,7 +160,7 @@ public class Cpu extends Resource { /** - * @param index of power peak to set + * @param pstate_index index of power peak to set */ public void setPowerPeakAt(int pstate_index) { SurfJNI.Cpu_setPowerPeakAt(swigCPtr, this, pstate_index); @@ -168,7 +168,7 @@ public class Cpu extends Resource { /** - * @param The new state of the cpu + * @param state The new state of the cpu */ public void setState(ResourceState state) { SurfJNI.Cpu_setState(swigCPtr, this, state.swigValue()); diff --git a/src/bindings/java/surfdoc.i b/src/bindings/java/surfdoc.i index 362c1e48fa..d88734c3c9 100644 --- a/src/bindings/java/surfdoc.i +++ b/src/bindings/java/surfdoc.i @@ -159,7 +159,7 @@ * A cpu constructor (using LMM) * @param model * @param name - * @param properties + * @param props * @param constraint * @param core * @param powerPeak @@ -173,7 +173,7 @@ * A cpu constructor * @param model * @param name - * @param properties + * @param props * @param core * @param powerPeak * @param powerScale @@ -236,13 +236,13 @@ %javamethodmodifiers Cpu::setPowerPeakAt(int pstate_index) " /** - * @param index of power peak to set + * @param pstate_index index of power peak to set */ public"; %javamethodmodifiers Cpu::setState(e_surf_resource_state_t state) " /** - * @param The new state of the cpu + * @param state The new state of the cpu */ public"; @@ -327,7 +327,7 @@ %javamethodmodifiers Action::setBound(double bound) " /** - * @param TODO + * @param bound TODO */ public"; @@ -346,13 +346,13 @@ %javamethodmodifiers Action::setPriority(double priority) " /** - * @param The new priority of the action + * @param priority The new priority of the action */ public"; %javamethodmodifiers Action::setState(e_surf_action_state_t state) " /** - * @param The new state + * @param state The new state */ public";