Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a307477305e0e3be010533818eea67b9e46748a0
[simgrid.git] / src / bindings / java / org / simgrid / surf / NetworkAction.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 NetworkAction extends Action {
12   private long swigCPtr;
13
14   protected NetworkAction(long cPtr, boolean cMemoryOwn) {
15     super(SurfJNI.NetworkAction_SWIGUpcast(cPtr), cMemoryOwn);
16     swigCPtr = cPtr;
17   }
18
19   protected static long getCPtr(NetworkAction obj) {
20     return (obj == null) ? 0 : obj.swigCPtr;
21   }
22
23   protected void finalize() {
24     delete();
25   }
26
27   public synchronized void delete() {
28     if (swigCPtr != 0) {
29       if (swigCMemOwn) {
30         swigCMemOwn = false;
31         SurfJNI.delete_NetworkAction(swigCPtr);
32       }
33       swigCPtr = 0;
34     }
35     super.delete();
36   }
37
38   public double getLatency() {
39     return SurfJNI.NetworkAction_getLatency(swigCPtr, this);
40   }
41
42 }