#include <DOMImplementationLS.hpp>
Inheritance diagram for xercesc::DOMImplementationLS:
Public Types | |
Public constants | |
enum | DOMImplementationLSMode { MODE_SYNCHRONOUS = 1, MODE_ASYNCHRONOUS = 2 } |
Create a synchronous or an asynchronous DOMLSParser . More... | |
Public Member Functions | |
Destructor | |
virtual | ~DOMImplementationLS () |
Destructor. | |
Functions introduced in DOM Level 3 | |
virtual DOMLSParser * | createLSParser (const DOMImplementationLSMode mode, const XMLCh *const schemaType, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager, XMLGrammarPool *const gramPool=0)=0 |
Create a new DOMLSParser. | |
virtual DOMLSSerializer * | createLSSerializer (MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)=0 |
Create a new DOMLSSerializer. | |
virtual DOMLSInput * | createLSInput (MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)=0 |
Create a new "empty" DOMLSInput. | |
virtual DOMLSOutput * | createLSOutput (MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)=0 |
Create a new "empty" LSOutput. | |
Protected Member Functions | |
Hidden constructors | |
DOMImplementationLS () |
DOMImplementationLS
contains the factory methods for creating Load and Save objects.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 "empty" DOMLSInput.
|
|
Create a new "empty" LSOutput.
|
|
Create a new DOMLSParser. The newly constructed parser may then be configured by means of its DOMConfiguration object, and used to parse documents by means of its parse method.
|
|
Create a new DOMLSSerializer. DOMLSSerializer is used to serialize a DOM tree back into an XML document.
|