SourceForge.net Logo
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Examples

xercesc Namespace Reference

This class holds the list of registered DOMImplementations. More...


Classes

class  xercesc::MemoryManager
 Configurable memory manager. More...
class  xercesc::XMLDeleter
class  xercesc::XMLPlatformUtils
 Utilities that must be implemented in a platform-specific way. More...
class  xercesc::DOMAttr
 The DOMAttr class refers to an attribute of an XML element. More...
class  xercesc::DOMCDATASection
 CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. More...
class  xercesc::DOMCharacterData
 The DOMCharacterData interface extends DOMNode with a set of attributes and methods for accessing character data in the DOM. More...
class  xercesc::DOMComment
 This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting ' <!--' and ending '-->'. More...
class  xercesc::DOMConfiguration
 The DOMConfiguration interface represents the configuration of a document and maintains a table of recognized parameters. More...
class  xercesc::DOMDocument
 The DOMDocument interface represents the entire XML document. More...
class  xercesc::DOMDocumentFragment
 DOMDocumentFragment is a "lightweight" or "minimal" DOMDocument object. More...
class  xercesc::DOMDocumentRange
class  xercesc::DOMDocumentTraversal
 DOMDocumentTraversal contains methods that create DOMNodeIterators and DOMTreeWalkers to traverse a node and its children in document order (depth first, pre-order traversal, which is equivalent to the order in which the start tags occur in the text representation of the document). More...
class  xercesc::DOMDocumentType
 Each DOMDocument has a doctype attribute whose value is either null or a DOMDocumentType object. More...
class  xercesc::DOMElement
 By far the vast majority of objects (apart from text) that authors encounter when traversing a document are DOMElement nodes. More...
class  xercesc::DOMEntity
 This interface represents an entity, either parsed or unparsed, in an XML document. More...
class  xercesc::DOMEntityReference
 DOMEntityReference objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. More...
class  xercesc::DOMError
 DOMError is an interface that describes an error. More...
class  xercesc::DOMErrorHandler
 Basic interface for DOM error handlers. More...
class  xercesc::DOMException
class  xercesc::DOMImplementation
 The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model. More...
class  xercesc::DOMImplementationList
 The DOMImplementationList interface provides the abstraction of an ordered collection of DOM implementations, without defining or constraining how this collection is implemented. More...
class  xercesc::DOMImplementationLS
class  xercesc::DOMImplementationRegistry
class  xercesc::DOMImplementationSource
class  xercesc::DOMLocator
 DOMLocator is an interface that describes a location. More...
class  xercesc::DOMLSException
class  xercesc::DOMLSInput
 This interface represents a single input source for an XML entity. More...
class  xercesc::DOMLSOutput
 This interface represents an output destination for data. More...
class  xercesc::DOMLSParser
 DOMLSParser provides an API for parsing XML documents and building the corresponding DOM document tree. More...
class  xercesc::DOMLSParserFilter
class  xercesc::DOMLSResourceResolver
 DOMLSResourceResolver provides a way for applications to redirect references to external entities. More...
class  xercesc::DOMLSSerializer
class  xercesc::DOMLSSerializerFilter
class  xercesc::DOMMemoryManager
 The DOMMemoryManager interface exposes the memory allocation-related functionalities of a DOMDocument. More...
class  xercesc::DOMNamedNodeMap
 DOMNamedNodeMaps are used to represent collections of nodes that can be accessed by name. More...
class  xercesc::DOMNode
 The DOMNode interface is the primary datatype for the entire Document Object Model. More...
class  xercesc::DOMNodeFilter
 Filters are objects that know how to "filter out" nodes. More...
class  xercesc::DOMNodeIterator
 DOMNodeIterators are used to step through a set of nodes, e.g. More...
class  xercesc::DOMNodeList
 The DOMNodeList interface provides the abstraction of an ordered collection of nodes. More...
class  xercesc::DOMNotation
 This interface represents a notation declared in the DTD. More...
class  xercesc::DOMProcessingInstruction
 The DOMProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document. More...
class  xercesc::DOMPSVITypeInfo
 The DOMPSVITypeInfo interface represent the PSVI info used by DOMElement or DOMAttr nodes, specified in the schemas associated with the document. More...
class  xercesc::DOMRange
class  xercesc::DOMRangeException
 Range operations may throw a DOMRangeException as specified in their method descriptions. More...
class  xercesc::DOMStringList
 The DOMStringList interface provides the abstraction of an ordered collection of strings, without defining or constraining how this collection is implemented. More...
class  xercesc::DOMText
 The DOMText interface inherits from DOMCharacterData and represents the textual content (termed character data in XML) of an DOMElement or DOMAttr. More...
class  xercesc::DOMTreeWalker
 DOMTreeWalker objects are used to navigate a document tree or subtree using the view of the document defined by their whatToShow flags and filter (if any). More...
class  xercesc::DOMTypeInfo
 The DOMTypeInfo interface represent a type used by DOMElement or DOMAttr nodes, specified in the schemas associated with the document. More...
class  xercesc::DOMUserDataHandler
 When associating an object to a key on a node using setUserData the application can provide a handler that gets called when the node the object is associated to is being cloned or imported. More...
class  xercesc::DOMXPathEvaluator
 The evaluation of XPath expressions is provided by DOMXPathEvaluator. More...
class  xercesc::DOMXPathException
 
Since:
DOM Level 3
More...
class  xercesc::DOMXPathExpression
 The DOMXPathExpression interface represents a parsed and resolved XPath expression. More...
class  xercesc::DOMXPathNamespace
 The DOMXPathNamespace interface is returned by DOMXPathResult interfaces to represent the XPath namespace node type that DOM lacks. More...
class  xercesc::DOMXPathNSResolver
 The DOMXPathNSResolver interface permit prefix strings in the expression to be properly bound to namespaceURI strings. More...
class  xercesc::DOMXPathResult
 The DOMXPathResult interface represents the result of the evaluation of an XPath 1.0 or XPath 2.0 expression within the context of a particular node. More...
class  xercesc::StDOMNode< T >

Typedefs

typedef DOMNodeDOMNodeSPtr
typedef DOMAttrDOMAttrSPtr
typedef DOMElementDOMElementSPtr

Functions

 MakeXMLException (XMLPlatformUtilsException, XMLUTIL_EXPORT) inline XMLSize_t XMLPlatformUtils


Detailed Description

This class holds the list of registered DOMImplementations.

Implementation or application can register DOMImplementationSource to the registry, and then can query DOMImplementation based on a list of requested features.

This provides an application with an implementation independent starting point.

See also:
DOMImplementation

DOMImplementationList

DOMImplementationSource

Since:
DOM Level 3


Typedef Documentation

typedef DOMAttr* xercesc::DOMAttrSPtr
 

typedef DOMElement* xercesc::DOMElementSPtr
 

typedef DOMNode* xercesc::DOMNodeSPtr
 


Function Documentation

MakeXMLException XMLPlatformUtilsException  ,
XMLUTIL_EXPORT 
 


Generated on Fri Sep 25 06:55:54 2009 for XQilla DOM Level 3 API by  doxygen 1.3.9.1