/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 4.0.1 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package net.openvpn.ovpn3; public class ClientAPI_InterfaceStats { private transient long swigCPtr; protected transient boolean swigCMemOwn; protected ClientAPI_InterfaceStats(long cPtr, boolean cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = cPtr; } protected static long getCPtr(ClientAPI_InterfaceStats obj) { return (obj == null) ? 0 : obj.swigCPtr; } @SuppressWarnings("deprecation") protected void finalize() { delete(); } public synchronized void delete() { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; ovpncliJNI.delete_ClientAPI_InterfaceStats(swigCPtr); } swigCPtr = 0; } } public void setBytesIn(long value) { ovpncliJNI.ClientAPI_InterfaceStats_bytesIn_set(swigCPtr, this, value); } public long getBytesIn() { return ovpncliJNI.ClientAPI_InterfaceStats_bytesIn_get(swigCPtr, this); } public void setPacketsIn(long value) { ovpncliJNI.ClientAPI_InterfaceStats_packetsIn_set(swigCPtr, this, value); } public long getPacketsIn() { return ovpncliJNI.ClientAPI_InterfaceStats_packetsIn_get(swigCPtr, this); } public void setErrorsIn(long value) { ovpncliJNI.ClientAPI_InterfaceStats_errorsIn_set(swigCPtr, this, value); } public long getErrorsIn() { return ovpncliJNI.ClientAPI_InterfaceStats_errorsIn_get(swigCPtr, this); } public void setBytesOut(long value) { ovpncliJNI.ClientAPI_InterfaceStats_bytesOut_set(swigCPtr, this, value); } public long getBytesOut() { return ovpncliJNI.ClientAPI_InterfaceStats_bytesOut_get(swigCPtr, this); } public void setPacketsOut(long value) { ovpncliJNI.ClientAPI_InterfaceStats_packetsOut_set(swigCPtr, this, value); } public long getPacketsOut() { return ovpncliJNI.ClientAPI_InterfaceStats_packetsOut_get(swigCPtr, this); } public void setErrorsOut(long value) { ovpncliJNI.ClientAPI_InterfaceStats_errorsOut_set(swigCPtr, this, value); } public long getErrorsOut() { return ovpncliJNI.ClientAPI_InterfaceStats_errorsOut_get(swigCPtr, this); } public ClientAPI_InterfaceStats() { this(ovpncliJNI.new_ClientAPI_InterfaceStats(), true); } }