Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix some javadoc warnings (remains 2).
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Fri, 25 Apr 2014 12:47:45 +0000 (14:47 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Mon, 28 Apr 2014 20:57:14 +0000 (22:57 +0200)
src/bindings/java/org/simgrid/surf/Action.java
src/bindings/java/org/simgrid/surf/Cpu.java
src/bindings/java/surfdoc.i

index d81b2ba..911a8d3 100644 (file)
@@ -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());
index 82ce3e2..61a2d54 100644 (file)
@@ -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());
index 362c1e4..d88734c 100644 (file)
     * A cpu constructor (using LMM)
     * @param model
     * @param name
-    * @param properties
+    * @param props
     * @param constraint
     * @param core
     * @param powerPeak
     * A cpu constructor
     * @param model
     * @param name
-    * @param properties
+    * @param props
     * @param core
     * @param powerPeak
     * @param powerScale
 
 %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";
 
 
 %javamethodmodifiers Action::setBound(double bound) "
   /**
-    * @param TODO
+    * @param bound TODO
     */
   public";
 
 
 %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";