Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the ability to write internal plugins in Java
[simgrid.git] / src / bindings / java / org / simgrid / surf / LmmVariable.java
diff --git a/src/bindings/java/org/simgrid/surf/LmmVariable.java b/src/bindings/java/org/simgrid/surf/LmmVariable.java
deleted file mode 100644 (file)
index 7e9e372..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-/* ----------------------------------------------------------------------------
- * This file was automatically generated by SWIG (http://www.swig.org).
- * Version 2.0.11
- *
- * Do not make changes to this file unless you know what you are doing--modify
- * the SWIG interface file instead.
- * ----------------------------------------------------------------------------- */
-
-package org.simgrid.surf;
-
-public class LmmVariable {
-  private long swigCPtr;
-  protected boolean swigCMemOwn;
-
-  protected LmmVariable(long cPtr, boolean cMemoryOwn) {
-    swigCMemOwn = cMemoryOwn;
-    swigCPtr = cPtr;
-  }
-
-  protected static long getCPtr(LmmVariable obj) {
-    return (obj == null) ? 0 : obj.swigCPtr;
-  }
-
-  protected void finalize() {
-    delete();
-  }
-
-  public synchronized void delete() {
-    if (swigCPtr != 0) {
-      if (swigCMemOwn) {
-        swigCMemOwn = false;
-        SurfJNI.delete_LmmVariable(swigCPtr);
-      }
-      swigCPtr = 0;
-    }
-  }
-
-  public double getValue() {
-    return SurfJNI.LmmVariable_getValue(swigCPtr, this);
-  }
-
-  public LmmVariable() {
-    this(SurfJNI.new_LmmVariable(), true);
-  }
-
-}