Xalan-C++ API Reference  1.12.0
Public Types | Public Member Functions | Static Public Member Functions | List of all members
xalanc::XalanSourceTreeDocument Class Reference

#include <xalanc/XalanSourceTree/XalanSourceTreeDocument.hpp>

Inheritance diagram for xalanc::XalanSourceTreeDocument:
[legend]
Collaboration diagram for xalanc::XalanSourceTreeDocument:
[legend]

Public Types

enum  {
  eDefaultAttributeAllocatorBlockSize = 100, eDefaultAttributeNSAllocatorBlockSize = 50, eDefaultCommentAllocatorBlockSize = 10, eDefaultElementAllocatorBlockSize = 100,
  eDefaultElementNSAllocatorBlockSize = 100, eDefaultPIAllocatorBlockSize = 10, eDefaultTextAllocatorBlockSize = 100, eDefaultTextIWSAllocatorBlockSize = 100,
  eDefaultNamesStringPoolBlockSize = XalanDOMStringPool::eDefaultBlockSize, eDefaultNamesStringPoolBucketCount = XalanDOMStringPool::eDefaultBucketCount, eDefaultNamesStringPoolBucketSize = XalanDOMStringPool::eDefaultBucketSize, eDefaultValuesStringPoolBlockSize = XalanDOMStringPool::eDefaultBlockSize,
  eDefaultValuesStringPoolBucketCount = 997, eDefaultValuesStringPoolBucketSize = XalanDOMStringPool::eDefaultBucketSize
}
 
typedef XalanArrayAllocator< XalanSourceTreeAttr * > AttributesArrayAllocatorType
 
typedef XalanMap< const XalanDOMChar *, XalanSourceTreeElement * > ElementByIDMapType
 
typedef XalanMap< XalanDOMString, XalanDOMStringUnparsedEntityURIMapType
 
typedef XalanSourceTreeAttributeAllocator::size_type allocator_size_type
 
typedef XalanDOMStringPool::block_size_type block_size_type
 
typedef XalanDOMStringPool::bucket_count_type bucket_count_type
 
typedef XalanDOMStringPool::bucket_size_type bucket_size_type
 
- Public Types inherited from xalanc::XalanNode
enum  NodeType {
  UNKNOWN_NODE = 0, ELEMENT_NODE = 1, ATTRIBUTE_NODE = 2, TEXT_NODE = 3,
  CDATA_SECTION_NODE = 4, ENTITY_REFERENCE_NODE = 5, ENTITY_NODE = 6, PROCESSING_INSTRUCTION_NODE = 7,
  COMMENT_NODE = 8, DOCUMENT_NODE = 9, DOCUMENT_TYPE_NODE = 10, DOCUMENT_FRAGMENT_NODE = 11,
  NOTATION_NODE = 12
}
 
typedef unsigned long IndexType
 

Public Member Functions

 XalanSourceTreeDocument (MemoryManager &theManager, bool fPoolAllText=s_poolAllTextNodes, block_size_type theNamesStringPoolBlockSize=eDefaultNamesStringPoolBlockSize, bucket_count_type theNamesStringPoolBucketCount=eDefaultNamesStringPoolBucketCount, bucket_size_type theNamesStringPoolBucketSize=eDefaultNamesStringPoolBucketSize, block_size_type theValuesStringPoolBlockSize=eDefaultValuesStringPoolBlockSize, bucket_count_type theValuesStringPoolBucketCount=eDefaultValuesStringPoolBucketCount, bucket_size_type theValuesStringPoolBucketSize=eDefaultValuesStringPoolBucketSize)
 Constructor for XalanSourceTreeDocument. More...
 
 XalanSourceTreeDocument (MemoryManager &theManager, allocator_size_type theAttributeBlockSize, allocator_size_type theAttributeNSBlockSize, allocator_size_type theCommentBlockSize, allocator_size_type theElementBlockSize, allocator_size_type theElementNSBlockSize, allocator_size_type thePIBlockSize, allocator_size_type theTextBlockSize, allocator_size_type theTextIWSBlockSize, bool fPoolAllText=s_poolAllTextNodes)
 Constructor for XalanSourceTreeDocument. More...
 
virtual ~XalanSourceTreeDocument ()
 
virtual const XalanDOMStringgetNodeName () const
 Gets the name of this node, depending on its type. More...
 
virtual const XalanDOMStringgetNodeValue () const
 Gets the value of this node, depending on its type. More...
 
virtual NodeType getNodeType () const
 An enum value representing the type of the underlying object. More...
 
virtual XalanNodegetParentNode () const
 Gets the parent of this node. More...
 
virtual const XalanNodeListgetChildNodes () const
 Gets a NodeList that contains all children of this node. More...
 
virtual XalanNodegetFirstChild () const
 Gets the first child of this node. More...
 
virtual XalanNodegetLastChild () const
 Gets the last child of this node. More...
 
virtual XalanNodegetPreviousSibling () const
 Gets the node immediately preceding this node. More...
 
virtual XalanNodegetNextSibling () const
 Gets the node immediately following this node. More...
 
virtual const XalanNamedNodeMapgetAttributes () const
 Gets a NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise. More...
 
virtual XalanDocumentgetOwnerDocument () const
 Gets the Document object associated with this node. More...
 
virtual const XalanDOMStringgetNamespaceURI () const
 Get the namespace URI of this node, or null if it is unspecified. More...
 
virtual const XalanDOMStringgetPrefix () const
 Get the namespace prefix of this node, or null if it is unspecified. More...
 
virtual const XalanDOMStringgetLocalName () const
 Returns the local part of the qualified name of this node. More...
 
virtual bool isIndexed () const
 Determine if the document is node-order indexed. More...
 
virtual IndexType getIndex () const
 Get the node's index. More...
 
virtual XalanElementgetDocumentElement () const
 Return a reference to the root element of the document. More...
 
virtual XalanElementgetElementById (const XalanDOMString &elementId) const
 Returns the Element whose ID is given by elementId. More...
 
XalanSourceTreeElementcreateElementNode (const XalanDOMChar *name, const AttributeListType &attrs, XalanNode *theParentNode=0, XalanNode *thePreviousSibling=0, XalanNode *theNextSibling=0, bool fAddXMLNamespaceAttribute=false)
 
XalanSourceTreeElementcreateElementNode (const XalanDOMChar *uri, const XalanDOMChar *localname, const XalanDOMChar *qname, const AttributesType &attrs, XalanNode *theParentNode=0, XalanNode *thePreviousSibling=0, XalanNode *theNextSibling=0, bool fAddXMLNamespaceAttribute=false)
 
XalanSourceTreeElementcreateElementNode (const XalanDOMChar *tagName, const AttributeListType &attrs, const PrefixResolver &thePrefixResolver, XalanNode *theParentNode=0, XalanNode *thePreviousSibling=0, XalanNode *theNextSibling=0, bool fAddXMLNamespaceAttribute=false)
 
XalanSourceTreeElementcreateElementNode (const XalanDOMChar *name, const AttributesType &attrs, XalanNode *theParentNode=0, XalanNode *thePreviousSibling=0, XalanNode *theNextSibling=0, bool fAddXMLNamespaceAttribute=false)
 
XalanSourceTreeCommentcreateCommentNode (const XalanDOMChar *data, XalanDOMString::size_type length, XalanNode *theParentNode=0, XalanNode *thePreviousSibling=0, XalanNode *theNextSibling=0)
 
XalanSourceTreeProcessingInstructioncreateProcessingInstructionNode (const XalanDOMChar *target, const XalanDOMChar *data, XalanNode *theParentNode=0, XalanNode *thePreviousSibling=0, XalanNode *theNextSibling=0)
 
XalanSourceTreeTextcreateTextNode (const XalanDOMChar *chars, XalanDOMString::size_type length, XalanNode *theParentNode=0, XalanNode *thePreviousSibling=0, XalanNode *theNextSibling=0)
 
XalanSourceTreeTextcreateTextIWSNode (const XalanDOMChar *chars, XalanDOMString::size_type length, XalanNode *theParentNode=0, XalanNode *thePreviousSibling=0, XalanNode *theNextSibling=0)
 
void unparsedEntityDeclaration (const XalanDOMChar *name, const XalanDOMChar *publicId, const XalanDOMChar *systemId, const XalanDOMChar *notationName)
 
const XalanDOMStringgetUnparsedEntityURI (const XalanDOMString &theName) const
 
void appendChildNode (XalanSourceTreeComment *theChild)
 
void appendChildNode (XalanSourceTreeElement *theChild)
 
void appendChildNode (XalanSourceTreeProcessingInstruction *theChild)
 
- Public Member Functions inherited from xalanc::XalanDocument
 XalanDocument ()
 
virtual ~XalanDocument ()
 
- Public Member Functions inherited from xalanc::XalanNode
 XalanNode ()
 
virtual ~XalanNode ()
 

Static Public Member Functions

static void initialize (MemoryManager &theManager)
 Perform static initialization. More...
 
static void terminate ()
 Perform static shut down. More...
 
static XalanSourceTreeDocumentcreate (MemoryManager &theManager, bool fPoolAllText=s_poolAllTextNodes, block_size_type theNamesStringPoolBlockSize=eDefaultNamesStringPoolBlockSize, bucket_count_type theNamesStringPoolBucketCount=eDefaultNamesStringPoolBucketCount, bucket_size_type theNamesStringPoolBucketSize=eDefaultNamesStringPoolBucketSize, block_size_type theValuesStringPoolBlockSize=eDefaultValuesStringPoolBlockSize, bucket_count_type theValuesStringPoolBucketCount=eDefaultValuesStringPoolBucketCount, bucket_size_type theValuesStringPoolBucketSize=eDefaultValuesStringPoolBucketSize)
 
static bool getPoolAllTextNodes ()
 
static void setPoolAllTextNodes (bool fPool)
 

Additional Inherited Members

- Protected Member Functions inherited from xalanc::XalanDocument
 XalanDocument (const XalanDocument &theSource)
 
XalanDocumentoperator= (const XalanDocument &theSource)
 
bool operator== (const XalanDocument &theRHS) const
 
- Protected Member Functions inherited from xalanc::XalanNode
 XalanNode (const XalanNode &theSource)
 
XalanNodeoperator= (const XalanNode &theSource)
 
bool operator== (const XalanNode &theRHS) const
 

Detailed Description

Definition at line 78 of file XalanSourceTreeDocument.hpp.

Member Typedef Documentation

◆ allocator_size_type

Definition at line 122 of file XalanSourceTreeDocument.hpp.

◆ AttributesArrayAllocatorType

Definition at line 82 of file XalanSourceTreeDocument.hpp.

◆ block_size_type

Definition at line 123 of file XalanSourceTreeDocument.hpp.

◆ bucket_count_type

Definition at line 124 of file XalanSourceTreeDocument.hpp.

◆ bucket_size_type

Definition at line 125 of file XalanSourceTreeDocument.hpp.

◆ ElementByIDMapType

Definition at line 86 of file XalanSourceTreeDocument.hpp.

◆ UnparsedEntityURIMapType

Definition at line 90 of file XalanSourceTreeDocument.hpp.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
eDefaultAttributeAllocatorBlockSize 
eDefaultAttributeNSAllocatorBlockSize 
eDefaultCommentAllocatorBlockSize 
eDefaultElementAllocatorBlockSize 
eDefaultElementNSAllocatorBlockSize 
eDefaultPIAllocatorBlockSize 
eDefaultTextAllocatorBlockSize 
eDefaultTextIWSAllocatorBlockSize 
eDefaultNamesStringPoolBlockSize 
eDefaultNamesStringPoolBucketCount 
eDefaultNamesStringPoolBucketSize 
eDefaultValuesStringPoolBlockSize 
eDefaultValuesStringPoolBucketCount 
eDefaultValuesStringPoolBucketSize 

Definition at line 106 of file XalanSourceTreeDocument.hpp.

Constructor & Destructor Documentation

◆ XalanSourceTreeDocument() [1/2]

xalanc::XalanSourceTreeDocument::XalanSourceTreeDocument ( MemoryManager &  theManager,
bool  fPoolAllText = s_poolAllTextNodes,
block_size_type  theNamesStringPoolBlockSize = eDefaultNamesStringPoolBlockSize,
bucket_count_type  theNamesStringPoolBucketCount = eDefaultNamesStringPoolBucketCount,
bucket_size_type  theNamesStringPoolBucketSize = eDefaultNamesStringPoolBucketSize,
block_size_type  theValuesStringPoolBlockSize = eDefaultValuesStringPoolBlockSize,
bucket_count_type  theValuesStringPoolBucketCount = eDefaultValuesStringPoolBucketCount,
bucket_size_type  theValuesStringPoolBucketSize = eDefaultValuesStringPoolBucketSize 
)

Constructor for XalanSourceTreeDocument.

Parameters
fPoolAllTextIf false, text node data that is not whitespace will not be pooled.
theNamesStringPoolBlockSizeThe block size for allocating strings in the name pool
theNamesStringPoolBucketCountThe number of buckets for allocating strings in the name pool
theNamesStringPoolBucketSizeThe bucket size for allocating strings in the name pool
theValuesStringPoolBlockSizeThe block size for allocating strings in the values pool
theValuesStringPoolBucketCountThe number of buckets for allocating strings in the values pool
theValuesStringPoolBucketSizeThe bucket size for allocating strings in the values pool

◆ XalanSourceTreeDocument() [2/2]

xalanc::XalanSourceTreeDocument::XalanSourceTreeDocument ( MemoryManager &  theManager,
allocator_size_type  theAttributeBlockSize,
allocator_size_type  theAttributeNSBlockSize,
allocator_size_type  theCommentBlockSize,
allocator_size_type  theElementBlockSize,
allocator_size_type  theElementNSBlockSize,
allocator_size_type  thePIBlockSize,
allocator_size_type  theTextBlockSize,
allocator_size_type  theTextIWSBlockSize,
bool  fPoolAllText = s_poolAllTextNodes 
)

Constructor for XalanSourceTreeDocument.

Parameters
theAttributeBlockSizeThe block size for allocating attribute nodes
theAttributeNSBlockSizeThe block size for allocating attribute NS nodes
theCommentBlockSizeThe block size for allocating comment nodes
theElementBlockSizeThe block size for allocating element nodes
theElementNSBlockSizeThe block size for allocating element nodes
theTextBlockSizeThe block size for allocating text nodes,
theTextIWSBlockSizeThe block size for allocating text IWS nodes,
fPoolAllTextIf false, text node data that is not whitespace will not be pooled.

◆ ~XalanSourceTreeDocument()

virtual xalanc::XalanSourceTreeDocument::~XalanSourceTreeDocument ( )
virtual

Member Function Documentation

◆ appendChildNode() [1/3]

void xalanc::XalanSourceTreeDocument::appendChildNode ( XalanSourceTreeComment theChild)

◆ appendChildNode() [2/3]

void xalanc::XalanSourceTreeDocument::appendChildNode ( XalanSourceTreeElement theChild)

◆ appendChildNode() [3/3]

void xalanc::XalanSourceTreeDocument::appendChildNode ( XalanSourceTreeProcessingInstruction theChild)

◆ create()

static XalanSourceTreeDocument* xalanc::XalanSourceTreeDocument::create ( MemoryManager &  theManager,
bool  fPoolAllText = s_poolAllTextNodes,
block_size_type  theNamesStringPoolBlockSize = eDefaultNamesStringPoolBlockSize,
bucket_count_type  theNamesStringPoolBucketCount = eDefaultNamesStringPoolBucketCount,
bucket_size_type  theNamesStringPoolBucketSize = eDefaultNamesStringPoolBucketSize,
block_size_type  theValuesStringPoolBlockSize = eDefaultValuesStringPoolBlockSize,
bucket_count_type  theValuesStringPoolBucketCount = eDefaultValuesStringPoolBucketCount,
bucket_size_type  theValuesStringPoolBucketSize = eDefaultValuesStringPoolBucketSize 
)
static

◆ createCommentNode()

XalanSourceTreeComment* xalanc::XalanSourceTreeDocument::createCommentNode ( const XalanDOMChar *  data,
XalanDOMString::size_type  length,
XalanNode theParentNode = 0,
XalanNode thePreviousSibling = 0,
XalanNode theNextSibling = 0 
)

◆ createElementNode() [1/4]

XalanSourceTreeElement* xalanc::XalanSourceTreeDocument::createElementNode ( const XalanDOMChar *  name,
const AttributeListType attrs,
XalanNode theParentNode = 0,
XalanNode thePreviousSibling = 0,
XalanNode theNextSibling = 0,
bool  fAddXMLNamespaceAttribute = false 
)

◆ createElementNode() [2/4]

XalanSourceTreeElement* xalanc::XalanSourceTreeDocument::createElementNode ( const XalanDOMChar *  name,
const AttributesType attrs,
XalanNode theParentNode = 0,
XalanNode thePreviousSibling = 0,
XalanNode theNextSibling = 0,
bool  fAddXMLNamespaceAttribute = false 
)

◆ createElementNode() [3/4]

XalanSourceTreeElement* xalanc::XalanSourceTreeDocument::createElementNode ( const XalanDOMChar *  tagName,
const AttributeListType attrs,
const PrefixResolver thePrefixResolver,
XalanNode theParentNode = 0,
XalanNode thePreviousSibling = 0,
XalanNode theNextSibling = 0,
bool  fAddXMLNamespaceAttribute = false 
)

◆ createElementNode() [4/4]

XalanSourceTreeElement* xalanc::XalanSourceTreeDocument::createElementNode ( const XalanDOMChar *  uri,
const XalanDOMChar *  localname,
const XalanDOMChar *  qname,
const AttributesType attrs,
XalanNode theParentNode = 0,
XalanNode thePreviousSibling = 0,
XalanNode theNextSibling = 0,
bool  fAddXMLNamespaceAttribute = false 
)

◆ createProcessingInstructionNode()

XalanSourceTreeProcessingInstruction* xalanc::XalanSourceTreeDocument::createProcessingInstructionNode ( const XalanDOMChar *  target,
const XalanDOMChar *  data,
XalanNode theParentNode = 0,
XalanNode thePreviousSibling = 0,
XalanNode theNextSibling = 0 
)

◆ createTextIWSNode()

XalanSourceTreeText* xalanc::XalanSourceTreeDocument::createTextIWSNode ( const XalanDOMChar *  chars,
XalanDOMString::size_type  length,
XalanNode theParentNode = 0,
XalanNode thePreviousSibling = 0,
XalanNode theNextSibling = 0 
)

◆ createTextNode()

XalanSourceTreeText* xalanc::XalanSourceTreeDocument::createTextNode ( const XalanDOMChar *  chars,
XalanDOMString::size_type  length,
XalanNode theParentNode = 0,
XalanNode thePreviousSibling = 0,
XalanNode theNextSibling = 0 
)

◆ getAttributes()

virtual const XalanNamedNodeMap* xalanc::XalanSourceTreeDocument::getAttributes ( ) const
virtual

Gets a NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.

Implements xalanc::XalanDocument.

◆ getChildNodes()

virtual const XalanNodeList* xalanc::XalanSourceTreeDocument::getChildNodes ( ) const
virtual

Gets a NodeList that contains all children of this node.

If there are no children, this is a NodeList containing no nodes.

Implements xalanc::XalanDocument.

◆ getDocumentElement()

virtual XalanElement* xalanc::XalanSourceTreeDocument::getDocumentElement ( ) const
virtual

Return a reference to the root element of the document.

Implements xalanc::XalanDocument.

◆ getElementById()

virtual XalanElement* xalanc::XalanSourceTreeDocument::getElementById ( const XalanDOMString elementId) const
virtual

Returns the Element whose ID is given by elementId.

If no such element exists, returns null. Behavior is not defined if more than one element has this ID.

Note: The DOM implementation must have information that says which attributes are of type ID. Attributes with the name "ID" are not of type ID unless so defined. Implementations that do not know whether attributes are of type ID or not are expected to return null.

Parameters
elementIdThe unique id value for an element.
Returns
The matching element.

Implements xalanc::XalanDocument.

◆ getFirstChild()

virtual XalanNode* xalanc::XalanSourceTreeDocument::getFirstChild ( ) const
virtual

Gets the first child of this node.

If there is no such node, this returns null.

Implements xalanc::XalanDocument.

◆ getIndex()

virtual IndexType xalanc::XalanSourceTreeDocument::getIndex ( ) const
virtual

Get the node's index.

Valid only if isIndexed() reports that the document is node-order indexed.

Returns
The index value, or 0 if the node is not indexed.

Implements xalanc::XalanDocument.

◆ getLastChild()

virtual XalanNode* xalanc::XalanSourceTreeDocument::getLastChild ( ) const
virtual

Gets the last child of this node.

If there is no such node, this returns null.

Implements xalanc::XalanDocument.

◆ getLocalName()

virtual const XalanDOMString& xalanc::XalanSourceTreeDocument::getLocalName ( ) const
virtual

Returns the local part of the qualified name of this node.

For nodes created with a DOM Level 1 method, such as createElement from the Document interface, it is null.

Implements xalanc::XalanDocument.

◆ getNamespaceURI()

virtual const XalanDOMString& xalanc::XalanSourceTreeDocument::getNamespaceURI ( ) const
virtual

Get the namespace URI of this node, or null if it is unspecified.

This is not a computed value that is the result of a namespace lookup based on an examination of the namespace declarations in scope. It is merely the namespace URI given at creation time.

For nodes of any type other than ELEMENT_NODE and ATTRIBUTE_NODE and nodes created with a DOM Level 1 method, such as createElement from the Document interface, this is always null.

Implements xalanc::XalanDocument.

◆ getNextSibling()

virtual XalanNode* xalanc::XalanSourceTreeDocument::getNextSibling ( ) const
virtual

Gets the node immediately following this node.

If there is no such node, this returns null.

Implements xalanc::XalanDocument.

◆ getNodeName()

virtual const XalanDOMString& xalanc::XalanSourceTreeDocument::getNodeName ( ) const
virtual

Gets the name of this node, depending on its type.

Implements xalanc::XalanDocument.

◆ getNodeType()

virtual NodeType xalanc::XalanSourceTreeDocument::getNodeType ( ) const
virtual

An enum value representing the type of the underlying object.

Implements xalanc::XalanDocument.

◆ getNodeValue()

virtual const XalanDOMString& xalanc::XalanSourceTreeDocument::getNodeValue ( ) const
virtual

Gets the value of this node, depending on its type.

Implements xalanc::XalanDocument.

◆ getOwnerDocument()

virtual XalanDocument* xalanc::XalanSourceTreeDocument::getOwnerDocument ( ) const
virtual

Gets the Document object associated with this node.

This is also the Document object used to create new nodes. When this node is a Document or a DocumentType which is not used with any Document yet, this is null.

Implements xalanc::XalanDocument.

◆ getParentNode()

virtual XalanNode* xalanc::XalanSourceTreeDocument::getParentNode ( ) const
virtual

Gets the parent of this node.

All nodes, except Document, DocumentFragment, and Attr may have a parent. However, if a node has just been created and not yet added to the tree, or if it has been removed from the tree, a null Node is returned.

Implements xalanc::XalanDocument.

◆ getPoolAllTextNodes()

static bool xalanc::XalanSourceTreeDocument::getPoolAllTextNodes ( )
inlinestatic

Definition at line 250 of file XalanSourceTreeDocument.hpp.

◆ getPrefix()

virtual const XalanDOMString& xalanc::XalanSourceTreeDocument::getPrefix ( ) const
virtual

Get the namespace prefix of this node, or null if it is unspecified.

Implements xalanc::XalanDocument.

◆ getPreviousSibling()

virtual XalanNode* xalanc::XalanSourceTreeDocument::getPreviousSibling ( ) const
virtual

Gets the node immediately preceding this node.

If there is no such node, this returns null.

Implements xalanc::XalanDocument.

◆ getUnparsedEntityURI()

const XalanDOMString& xalanc::XalanSourceTreeDocument::getUnparsedEntityURI ( const XalanDOMString theName) const

◆ initialize()

static void xalanc::XalanSourceTreeDocument::initialize ( MemoryManager &  theManager)
static

Perform static initialization.

See class XalanSourceTreeInit.

◆ isIndexed()

virtual bool xalanc::XalanSourceTreeDocument::isIndexed ( ) const
virtual

Determine if the document is node-order indexed.

Returns
true if the document is indexed, otherwise false.

Implements xalanc::XalanDocument.

◆ setPoolAllTextNodes()

static void xalanc::XalanSourceTreeDocument::setPoolAllTextNodes ( bool  fPool)
inlinestatic

Definition at line 256 of file XalanSourceTreeDocument.hpp.

◆ terminate()

static void xalanc::XalanSourceTreeDocument::terminate ( )
static

Perform static shut down.

See class XalanSourceTreeInit.

◆ unparsedEntityDeclaration()

void xalanc::XalanSourceTreeDocument::unparsedEntityDeclaration ( const XalanDOMChar *  name,
const XalanDOMChar *  publicId,
const XalanDOMChar *  systemId,
const XalanDOMChar *  notationName 
)

The documentation for this class was generated from the following file: