Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9a33e0e0bc8848e08e8fde781f0037600a8b7796
[simgrid.git] / src / bindings / java / org / simgrid / surf / Model.java
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 2.0.11
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 Model {
12   private long swigCPtr;
13   protected boolean swigCMemOwn;
14
15   protected Model(long cPtr, boolean cMemoryOwn) {
16     swigCMemOwn = cMemoryOwn;
17     swigCPtr = cPtr;
18   }
19
20   protected static long getCPtr(Model 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_Model(swigCPtr);
33       }
34       swigCPtr = 0;
35     }
36   }
37
38   public Model(String name) {
39     this(SurfJNI.new_Model(name), true);
40   }
41
42   public String getName() {
43     return SurfJNI.Model_getName(swigCPtr, this);
44   }
45
46   public double shareResources(double now) {
47     return SurfJNI.Model_shareResources(swigCPtr, this, now);
48   }
49
50   public double shareResourcesLazy(double now) {
51     return SurfJNI.Model_shareResourcesLazy(swigCPtr, this, now);
52   }
53
54   public double shareResourcesFull(double now) {
55     return SurfJNI.Model_shareResourcesFull(swigCPtr, this, now);
56   }
57
58   public void updateActionsState(double now, double delta) {
59     SurfJNI.Model_updateActionsState(swigCPtr, this, now, delta);
60   }
61
62   public void updateActionsStateLazy(double now, double delta) {
63     SurfJNI.Model_updateActionsStateLazy(swigCPtr, this, now, delta);
64   }
65
66   public void updateActionsStateFull(double now, double delta) {
67     SurfJNI.Model_updateActionsStateFull(swigCPtr, this, now, delta);
68   }
69
70   public ActionList getRunningActionSet() {
71     long cPtr = SurfJNI.Model_getRunningActionSet(swigCPtr, this);
72     return (cPtr == 0) ? null : new ActionList(cPtr, false);
73   }
74
75   public Action getRunningActionS() {
76     long cPtr = SurfJNI.Model_getRunningActionS(swigCPtr, this);
77     return (cPtr == 0) ? null : new Action(cPtr, false);
78   }
79
80 }