#include <DOMImplementationLS.hpp>
Inheritance diagram for xercesc::DOMImplementationLS:
Public Types | |
Public constants | |
enum | { MODE_SYNCHRONOUS = 1, MODE_ASYNCHRONOUS = 2 } |
Create a synchronous or an asynchronous DOMBuilder . More... | |
Public Member Functions | |
Destructor | |
virtual | ~DOMImplementationLS () |
Destructor. | |
Functions introduced in DOM Level 3 | |
virtual DOMBuilder * | createDOMBuilder (const short mode, const XMLCh *const schemaType, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager, XMLGrammarPool *const gramPool=0)=0 |
Create a new DOMBuilder. | |
virtual DOMWriter * | createDOMWriter (MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)=0 |
Create a new DOMWriter. | |
virtual DOMInputSource * | createDOMInputSource ()=0 |
Create a new "empty" DOMInputSource. | |
Protected Member Functions | |
Hidden constructors | |
DOMImplementationLS () |
DOMImplementationLS
contains the factory methods for creating objects that implement the DOMBuilder
(parser) and DOMWriter
(serializer) interfaces.An object that implements DOMImplementationLS is obtained by doing a binding specific cast from DOMImplementation to DOMImplementationLS. Implementations supporting the Load and Save feature must implement the DOMImplementationLS interface on whatever object implements the DOMImplementation interface.
|
Create a synchronous or an asynchronous
|
|
|
|
Destructor.
|
|
Create a new DOMBuilder. The newly constructed parser may then be configured by means of its setFeature method, and used to parse documents by means of its parse method. "Experimental - subject to change"
|
|
Create a new "empty" DOMInputSource. "Experimental - subject to change"
|
|
Create a new DOMWriter. DOMWriters are used to serialize a DOM tree back into an XML document. "Experimental - subject to change"
|