/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 1.3.39 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ namespace libsbml { using System; using System.Runtime.InteropServices; public class XMLHandler : IDisposable { private HandleRef swigCPtr; protected bool swigCMemOwn; internal XMLHandler(IntPtr cPtr, bool cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = new HandleRef(this, cPtr); } internal static HandleRef getCPtr(XMLHandler obj) { return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; } internal static HandleRef getCPtrAndDisown (XMLHandler obj) { HandleRef ptr = new HandleRef(null, IntPtr.Zero); if (obj != null) { ptr = obj.swigCPtr; obj.swigCMemOwn = false; } return ptr; } ~XMLHandler() { Dispose(); } public virtual void Dispose() { lock(this) { if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) { swigCMemOwn = false; libsbmlPINVOKE.delete_XMLHandler(swigCPtr); } swigCPtr = new HandleRef(null, IntPtr.Zero); GC.SuppressFinalize(this); } } public static bool operator==(XMLHandler lhs, XMLHandler rhs) { if((Object)lhs == (Object)rhs) { return true; } if( ((Object)lhs == null) || ((Object)rhs == null) ) { return false; } return (getCPtr(lhs).Handle.ToString() == getCPtr(rhs).Handle.ToString()); } public static bool operator!=(XMLHandler lhs, XMLHandler rhs) { return !(lhs == rhs); } public override bool Equals(Object sb) { if ( ! (sb is XMLHandler) ) { return false; } return this == (XMLHandler)sb; } public override int GetHashCode() { return swigCPtr.Handle.ToInt32(); } public XMLHandler() : this(libsbmlPINVOKE.new_XMLHandler(), true) { } public virtual void startDocument() { libsbmlPINVOKE.XMLHandler_startDocument(swigCPtr); } public virtual void XML(string version, string encoding) { libsbmlPINVOKE.XMLHandler_XML(swigCPtr, version, encoding); } public virtual void startElement(XMLToken element) { libsbmlPINVOKE.XMLHandler_startElement(swigCPtr, XMLToken.getCPtr(element)); if (libsbmlPINVOKE.SWIGPendingException.Pending) throw libsbmlPINVOKE.SWIGPendingException.Retrieve(); } public virtual void endDocument() { libsbmlPINVOKE.XMLHandler_endDocument(swigCPtr); } public virtual void endElement(XMLToken element) { libsbmlPINVOKE.XMLHandler_endElement(swigCPtr, XMLToken.getCPtr(element)); if (libsbmlPINVOKE.SWIGPendingException.Pending) throw libsbmlPINVOKE.SWIGPendingException.Retrieve(); } public virtual void characters(XMLToken data) { libsbmlPINVOKE.XMLHandler_characters(swigCPtr, XMLToken.getCPtr(data)); if (libsbmlPINVOKE.SWIGPendingException.Pending) throw libsbmlPINVOKE.SWIGPendingException.Retrieve(); } } }