Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Swig only in maintainer mode
[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
new file mode 100644 (file)
index 0000000..36b117a
--- /dev/null
@@ -0,0 +1,42 @@
+/* ----------------------------------------------------------------------------
+ * 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);
+  }
+
+}