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 / Surf.java
diff --git a/src/bindings/java/org/simgrid/surf/Surf.java b/src/bindings/java/org/simgrid/surf/Surf.java
deleted file mode 100644 (file)
index e58ee89..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-/* ----------------------------------------------------------------------------
- * This file was automatically generated by SWIG (http://www.swig.org).
- * Version 2.0.12
- *
- * 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 Surf {
-  public static Object getAction(long jarg1) {
-    return SurfJNI.getAction(jarg1);
-  }
-
-  public static Object getCpuModelDirector(long jarg1) {
-    return SurfJNI.getCpuModelDirector(jarg1);
-  }
-
-  public static Object getCpuDirector(long jarg1) {
-    return SurfJNI.getCpuDirector(jarg1);
-  }
-
-  public static Object getCpuActionDirector(long jarg1) {
-    return SurfJNI.getCpuActionDirector(jarg1);
-  }
-
-  
-  /**
-    * @return The current simulated time
-    */
-  public static double getClock() {
-    return SurfJNI.getClock();
-  }
-
-  public static void clean() {
-    SurfJNI.clean();
-  }
-
-  public static CpuModel getCpuModel() {
-    long cPtr = SurfJNI.getCpuModel();
-    return (cPtr == 0) ? null : new CpuModel(cPtr, false);
-  }
-
-  public static void setCpuModel(CpuModel cpuModel) {
-    SurfJNI.setCpuModel(CpuModel.getCPtr(cpuModel), cpuModel);
-  }
-
-  public static void setCpu(String name, Cpu cpu) {
-    SurfJNI.setCpu(name, Cpu.getCPtr(cpu), cpu);
-  }
-
-  public static Link[] getRoute(String srcName, String dstName) {
-     return Link.cArrayWrap(SurfJNI.getRoute(srcName, dstName), false);
-}
-
-}