Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[surf] Move some code in a simgrid::surf namespace
[simgrid.git] / src / bindings / java / org / simgrid / surf / Model.java
index 9a33e0e..f3dab49 100644 (file)
@@ -1,6 +1,6 @@
 /* ----------------------------------------------------------------------------
  * This file was automatically generated by SWIG (http://www.swig.org).
- * Version 2.0.11
+ * Version 2.0.12
  *
  * Do not make changes to this file unless you know what you are doing--modify
  * the SWIG interface file instead.
@@ -35,14 +35,6 @@ public class Model {
     }
   }
 
-  public Model(String name) {
-    this(SurfJNI.new_Model(name), true);
-  }
-
-  public String getName() {
-    return SurfJNI.Model_getName(swigCPtr, this);
-  }
-
   public double shareResources(double now) {
     return SurfJNI.Model_shareResources(swigCPtr, this, now);
   }
@@ -72,9 +64,8 @@ public class Model {
     return (cPtr == 0) ? null : new ActionList(cPtr, false);
   }
 
-  public Action getRunningActionS() {
-    long cPtr = SurfJNI.Model_getRunningActionS(swigCPtr, this);
-    return (cPtr == 0) ? null : new Action(cPtr, false);
+  public void addTraces() {
+    SurfJNI.Model_addTraces(swigCPtr, this);
   }
 
 }