X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3ae712a1b95294052b6e8136d0f0f2d4b30e6eb..a8c316ac06c17368f52aff8c009e63421103cc24:/src/bindings/java/org/simgrid/surf/Resource.java?ds=sidebyside diff --git a/src/bindings/java/org/simgrid/surf/Resource.java b/src/bindings/java/org/simgrid/surf/Resource.java index 4091eb538f..dbac94f5b4 100644 --- a/src/bindings/java/org/simgrid/surf/Resource.java +++ b/src/bindings/java/org/simgrid/surf/Resource.java @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). - * Version 2.0.11 + * Version 2.0.12 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. @@ -8,11 +8,6 @@ package org.simgrid.surf; -/** - * A resource used by a model (e.g., a cpu, a network link) - * @see Model - * @see Action - */ public class Resource { private long swigCPtr; protected boolean swigCMemOwn; @@ -40,65 +35,28 @@ public class Resource { } } - - /** - * @return The name of the resource - */ public String getName() { return SurfJNI.Resource_getName(swigCPtr, this); } - - /** - * @return True if the Resource is used - */ public boolean isUsed() { return SurfJNI.Resource_isUsed(swigCPtr, this); } - - /** - * @return The model associated to this Resource - */ public Model getModel() { long cPtr = SurfJNI.Resource_getModel(swigCPtr, this); return (cPtr == 0) ? null : new Model(cPtr, false); } - - /** - * @return The state of the resource - * @see ResourceState - */ public ResourceState getState() { return ResourceState.swigToEnum(SurfJNI.Resource_getState(swigCPtr, this)); } - - /** - * @return The constraint associatied (if using LMM) - */ public LmmConstraint getConstraint() { long cPtr = SurfJNI.Resource_getConstraint(swigCPtr, this); return (cPtr == 0) ? null : new LmmConstraint(cPtr, false); } - - /** - * @return The XbtDict of properties associated to this Resource - */ - public XbtDict getProperties() { - long cPtr = SurfJNI.Resource_getProperties(swigCPtr, this); - return (cPtr == 0) ? null : new XbtDict(cPtr, false); - } - - - /** - * Update the state of the Resource - * @param event_type - * @param value - * @param date - */ public void updateState(TmgrTraceEvent event_type, double value, double date) { SurfJNI.Resource_updateState(swigCPtr, this, TmgrTraceEvent.getCPtr(event_type), event_type, value, date); }