Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
No rpath in libsimgird-java and libsurf-java
[simgrid.git] / src / bindings / java / org / simgrid / surf / ActionList.java
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 2.0.12
4  *
5  * Do not make changes to this file unless you know what you are doing--modify
6  * the SWIG interface file instead.
7  * ----------------------------------------------------------------------------- */
8
9 package org.simgrid.surf;
10
11 public class ActionList {
12   private long swigCPtr;
13   protected boolean swigCMemOwn;
14
15   protected ActionList(long cPtr, boolean cMemoryOwn) {
16     swigCMemOwn = cMemoryOwn;
17     swigCPtr = cPtr;
18   }
19
20   protected static long getCPtr(ActionList obj) {
21     return (obj == null) ? 0 : obj.swigCPtr;
22   }
23
24   protected void finalize() {
25     delete();
26   }
27
28   public synchronized void delete() {
29     if (swigCPtr != 0) {
30       if (swigCMemOwn) {
31         swigCMemOwn = false;
32         SurfJNI.delete_ActionList(swigCPtr);
33       }
34       swigCPtr = 0;
35     }
36   }
37
38   public Action[] getArray() {
39   long[] cArray = SurfJNI.ActionList_getArray(swigCPtr, this);
40   Action[] arrayWrapper = new Action[cArray.length];
41   for (int i=0; i<cArray.length; i++)
42     arrayWrapper[i] = (Action) Surf.getAction(cArray[i]);
43   return arrayWrapper;
44   //   return Action.cArrayWrap(SurfJNI.ActionList_getArray(swigCPtr, this), false);
45 }
46
47   public ActionList() {
48     this(SurfJNI.new_ActionList(), true);
49   }
50
51 }