Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / bindings / java / org / simgrid / msg / As.java
diff --git a/src/bindings/java/org/simgrid/msg/As.java b/src/bindings/java/org/simgrid/msg/As.java
deleted file mode 100644 (file)
index 06e81c2..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/* Copyright (c) 2006-2022. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-package org.simgrid.msg;
-
-public class As {
-
-       private long bind;
-
-       protected As() {}
-
-       @Override
-       public String toString (){
-               return this.getName();
-       }
-       public native String getName();
-
-       public native As[] getSons();
-
-       public native String getProperty(String name);
-
-       public native Host[] getHosts();
-
-       /**
-        * Class initializer, to initialize various JNI stuff
-        */
-       public static native void nativeInit();
-       static {
-               nativeInit();
-       }
-}