RXmlEngDOMImplementation Class Reference

#include <xml/dom/xmlengdomimplementation.h>

class RXmlEngDOMImplementation
Public Member Functions
IMPORT_C voidClose(TBool)
IMPORT_C voidClose()
IMPORT_C voidOpenL(RHeap *)

Detailed Description

The RXmlEngDOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.

http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-102161490

Member Function Documentation

Close ( TBool )

IMPORT_C voidClose(TBoolaReserved)

Close method. It cleans up resources used by the DOM library. Clients should call this method at the end of library usage. The library should not be used after this call. If needed, clients can initialize the library again by calling the Open() method.

Parameters
aReservedThis parameter is not used

Close ( )

IMPORT_C voidClose()

Close method. It cleans up resources used by the DOM library. Clients should call this method at the end of library usage. The library should not be used after this call. If needed, clients can initialize the library again by calling the Open() method.

OpenL ( RHeap * )

IMPORT_C voidOpenL(RHeap *aHeap = NULL)

Open method needed to initialize the DOM library and should be called before using any class/function from this library. The initialization is required in every client thread in which it used. Calling this method multiple times in a thread is allowed. There should be a call to Close() for every call to Open, per thread.

Parameters
aHeapThis argument not used at present and is ignored in the implementation.
Leave Codes