/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 1.3.31 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package hep.aida.swig; import hep.aida.jni.AIDAJNIUtil; public class IFilter implements hep.aida.IFilter { private long swigCPtr; protected boolean swigCMemOwn; public IFilter(long cPtr, boolean cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = cPtr; } protected static long getCPtr(hep.aida.IFilter obj) { if (obj instanceof IFilter) { return (obj == null) ? 0 : ((IFilter)obj).swigCPtr; } else { long cPtr = AIDAJNI.new_IFilter(); // FIXME, memory leak if Java class gets finalized, since C++ director is not freed. AIDAJNI.IFilter_director_connect(obj, cPtr, true, true); return cPtr; } } protected void finalize() { delete(); } public synchronized void delete() { if(swigCPtr != 0 && swigCMemOwn) { swigCMemOwn = false; AIDAJNI.delete_IFilter(swigCPtr); } swigCPtr = 0; } protected void swigDirectorDisconnect() { swigCMemOwn = false; delete(); } public void swigReleaseOwnership() { swigCMemOwn = false; AIDAJNI.IFilter_change_ownership(this, swigCPtr, false); } public void swigTakeOwnership() { swigCMemOwn = true; AIDAJNI.IFilter_change_ownership(this, swigCPtr, true); } public void initialize(hep.aida.ITuple tuple) { AIDAJNI.IFilter_initialize(swigCPtr, this, ITuple.getCPtr(tuple), (hep.aida.ITuple)tuple); } public boolean accept() { return AIDAJNI.IFilter_accept(swigCPtr, this); } public String expression() { return AIDAJNI.IFilter_expression(swigCPtr, this); } public IFilter() { this(AIDAJNI.new_IFilter(), true); AIDAJNI.IFilter_director_connect(this, swigCPtr, swigCMemOwn, true); } }