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 / RoutingEdge.java
diff --git a/src/bindings/java/org/simgrid/surf/RoutingEdge.java b/src/bindings/java/org/simgrid/surf/RoutingEdge.java
deleted file mode 100644 (file)
index 36b117a..0000000
+++ /dev/null
@@ -1,42 +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 RoutingEdge {
-  private long swigCPtr;
-  protected boolean swigCMemOwn;
-
-  protected RoutingEdge(long cPtr, boolean cMemoryOwn) {
-    swigCMemOwn = cMemoryOwn;
-    swigCPtr = cPtr;
-  }
-
-  protected static long getCPtr(RoutingEdge obj) {
-    return (obj == null) ? 0 : obj.swigCPtr;
-  }
-
-  protected void finalize() {
-    delete();
-  }
-
-  public synchronized void delete() {
-    if (swigCPtr != 0) {
-      if (swigCMemOwn) {
-        swigCMemOwn = false;
-        SurfJNI.delete_RoutingEdge(swigCPtr);
-      }
-      swigCPtr = 0;
-    }
-  }
-
-  public String getName() {
-    return SurfJNI.RoutingEdge_getName(swigCPtr, this);
-  }
-
-}