Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
478ae282e49669b2d6ba84b416140bd8004952dd
[simgrid.git] / src / bindings / java / org / simgrid / surf / Resource.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 Resource {
12   private long swigCPtr;
13   protected boolean swigCMemOwn;
14
15   protected Resource(long cPtr, boolean cMemoryOwn) {
16     swigCMemOwn = cMemoryOwn;
17     swigCPtr = cPtr;
18   }
19
20   protected static long getCPtr(Resource 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_Resource(swigCPtr);
33       }
34       swigCPtr = 0;
35     }
36   }
37
38   public String getName() {
39     return SurfJNI.Resource_getName(swigCPtr, this);
40   }
41
42   public boolean isUsed() {
43     return SurfJNI.Resource_isUsed(swigCPtr, this);
44   }
45
46   public Model getModel() {
47     long cPtr = SurfJNI.Resource_getModel(swigCPtr, this);
48     return (cPtr == 0) ? null : new Model(cPtr, false);
49   }
50
51   public ResourceState getState() {
52     return ResourceState.swigToEnum(SurfJNI.Resource_getState(swigCPtr, this));
53   }
54
55   public LmmConstraint getConstraint() {
56     long cPtr = SurfJNI.Resource_getConstraint(swigCPtr, this);
57     return (cPtr == 0) ? null : new LmmConstraint(cPtr, false);
58   }
59
60   public XbtDict getProperties() {
61     long cPtr = SurfJNI.Resource_getProperties(swigCPtr, this);
62     return (cPtr == 0) ? null : new XbtDict(cPtr, false);
63   }
64
65   public void updateState(TmgrTraceEvent event_type, double value, double date) {
66     SurfJNI.Resource_updateState(swigCPtr, this, TmgrTraceEvent.getCPtr(event_type), event_type, value, date);
67   }
68
69 }