Xalan-C++ API Reference  1.12.0
Public Member Functions | Protected Member Functions | List of all members
xalanc::XalanText Class Referenceabstract

#include <xalanc/XalanDOM/XalanText.hpp>

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

Public Member Functions

 XalanText ()
 
virtual ~XalanText ()
 
virtual const XalanDOMStringgetNodeName () const =0
 Gets the name of this node, depending on its type. More...
 
virtual const XalanDOMStringgetNodeValue () const =0
 Gets the value of this node, depending on its type. More...
 
virtual NodeType getNodeType () const =0
 An enum value representing the type of the underlying object. More...
 
virtual XalanNodegetParentNode () const =0
 Gets the parent of this node. More...
 
virtual const XalanNodeListgetChildNodes () const =0
 Gets a NodeList that contains all children of this node. More...
 
virtual XalanNodegetFirstChild () const =0
 Gets the first child of this node. More...
 
virtual XalanNodegetLastChild () const =0
 Gets the last child of this node. More...
 
virtual XalanNodegetPreviousSibling () const =0
 Gets the node immediately preceding this node. More...
 
virtual XalanNodegetNextSibling () const =0
 Gets the node immediately following this node. More...
 
virtual const XalanNamedNodeMapgetAttributes () const =0
 Gets a NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise. More...
 
virtual XalanDocumentgetOwnerDocument () const =0
 Gets the Document object associated with this node. More...
 
virtual const XalanDOMStringgetNamespaceURI () const =0
 Get the namespace URI of this node, or null if it is unspecified. More...
 
virtual const XalanDOMStringgetPrefix () const =0
 Get the namespace prefix of this node, or null if it is unspecified. More...
 
virtual const XalanDOMStringgetLocalName () const =0
 Returns the local part of the qualified name of this node. More...
 
virtual bool isIndexed () const =0
 Determine if the document is node-order indexed. More...
 
virtual IndexType getIndex () const =0
 Get the node's index. More...
 
virtual const XalanDOMStringgetData () const =0
 Returns the character data of the node that implements this interface. More...
 
virtual bool isWhitespace () const =0
 Determine whether the text node instance is composed entirely of XML whitespace. More...
 
- Public Member Functions inherited from xalanc::XalanCharacterData
 XalanCharacterData ()
 
virtual ~XalanCharacterData ()
 
- Public Member Functions inherited from xalanc::XalanNode
 XalanNode ()
 
virtual ~XalanNode ()
 

Protected Member Functions

 XalanText (const XalanText &theSource)
 
XalanTextoperator= (const XalanText &theSource)
 
bool operator== (const XalanText &theRHS) const
 
- Protected Member Functions inherited from xalanc::XalanCharacterData
 XalanCharacterData (const XalanCharacterData &theSource)
 
XalanCharacterDataoperator= (const XalanCharacterData &theSource)
 
bool operator== (const XalanCharacterData &theRHS) const
 
- Protected Member Functions inherited from xalanc::XalanNode
 XalanNode (const XalanNode &theSource)
 
XalanNodeoperator= (const XalanNode &theSource)
 
bool operator== (const XalanNode &theRHS) const
 

Additional Inherited Members

- 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
 

Detailed Description

Definition at line 40 of file XalanText.hpp.

Constructor & Destructor Documentation

◆ XalanText() [1/2]

xalanc::XalanText::XalanText ( )

◆ ~XalanText()

virtual xalanc::XalanText::~XalanText ( )
virtual

◆ XalanText() [2/2]

xalanc::XalanText::XalanText ( const XalanText theSource)
protected

Member Function Documentation

◆ getAttributes()

virtual const XalanNamedNodeMap* xalanc::XalanText::getAttributes ( ) const
pure virtual

◆ getChildNodes()

virtual const XalanNodeList* xalanc::XalanText::getChildNodes ( ) const
pure virtual

Gets a NodeList that contains all children of this node.

If there are no children, this is a NodeList containing no nodes. The content of the returned NodeList is "live" in the sense that, for instance, changes to the children of the node object that it was created from are immediately reflected in the nodes returned by the NodeList accessors; it is not a static snapshot of the content of the node. This is true for every NodeList, including the ones returned by the getElementsByTagName method.

Implements xalanc::XalanCharacterData.

Implemented in xalanc::XalanCDATASection, xalanc::XercesTextBridge, xalanc::XercesCDATASectionBridge, xalanc::XObjectResultTreeFragProxyText, xalanc::XalanSourceTreeText, xalanc::XercesCDATASectionWrapper, and xalanc::XercesTextWrapper.

◆ getData()

virtual const XalanDOMString& xalanc::XalanText::getData ( ) const
pure virtual

Returns the character data of the node that implements this interface.

Exceptions
DOMExceptionNO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
DOMExceptionDOMSTRING_SIZE_ERR: Raised when it would return more characters than fit in a XalanDOMString variable on the implementation platform.

Implements xalanc::XalanCharacterData.

Implemented in xalanc::XalanCDATASection, xalanc::XercesTextBridge, xalanc::XercesCDATASectionBridge, xalanc::XObjectResultTreeFragProxyText, xalanc::XalanSourceTreeText, xalanc::XercesCDATASectionWrapper, and xalanc::XercesTextWrapper.

Referenced by xalanc::DOMServices::getNodeData().

◆ getFirstChild()

virtual XalanNode* xalanc::XalanText::getFirstChild ( ) const
pure virtual

◆ getIndex()

virtual IndexType xalanc::XalanText::getIndex ( ) const
pure virtual

Get the node's index.

Valid only if the owner document reports that the document is node-order indexed.

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

Implements xalanc::XalanCharacterData.

Implemented in xalanc::XalanCDATASection, xalanc::XercesTextBridge, xalanc::XercesCDATASectionBridge, xalanc::XObjectResultTreeFragProxyText, xalanc::XalanSourceTreeText, xalanc::XercesCDATASectionWrapper, and xalanc::XercesTextWrapper.

◆ getLastChild()

virtual XalanNode* xalanc::XalanText::getLastChild ( ) const
pure virtual

◆ getLocalName()

virtual const XalanDOMString& xalanc::XalanText::getLocalName ( ) const
pure 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::XalanCharacterData.

Implemented in xalanc::XalanCDATASection, xalanc::XercesTextBridge, xalanc::XercesCDATASectionBridge, xalanc::XObjectResultTreeFragProxyText, xalanc::XalanSourceTreeText, xalanc::XercesCDATASectionWrapper, and xalanc::XercesTextWrapper.

◆ getNamespaceURI()

virtual const XalanDOMString& xalanc::XalanText::getNamespaceURI ( ) const
pure 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::XalanCharacterData.

Implemented in xalanc::XalanCDATASection, xalanc::XercesTextBridge, xalanc::XercesCDATASectionBridge, xalanc::XObjectResultTreeFragProxyText, xalanc::XalanSourceTreeText, xalanc::XercesCDATASectionWrapper, and xalanc::XercesTextWrapper.

◆ getNextSibling()

virtual XalanNode* xalanc::XalanText::getNextSibling ( ) const
pure virtual

◆ getNodeName()

virtual const XalanDOMString& xalanc::XalanText::getNodeName ( ) const
pure virtual

◆ getNodeType()

virtual NodeType xalanc::XalanText::getNodeType ( ) const
pure virtual

◆ getNodeValue()

virtual const XalanDOMString& xalanc::XalanText::getNodeValue ( ) const
pure virtual

◆ getOwnerDocument()

virtual XalanDocument* xalanc::XalanText::getOwnerDocument ( ) const
pure 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::XalanCharacterData.

Implemented in xalanc::XalanCDATASection, xalanc::XercesTextBridge, xalanc::XercesCDATASectionBridge, xalanc::XObjectResultTreeFragProxyText, xalanc::XalanSourceTreeText, xalanc::XercesCDATASectionWrapper, and xalanc::XercesTextWrapper.

◆ getParentNode()

virtual XalanNode* xalanc::XalanText::getParentNode ( ) const
pure 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::XalanCharacterData.

Implemented in xalanc::XalanCDATASection, xalanc::XercesTextBridge, xalanc::XObjectResultTreeFragProxyText, xalanc::XalanSourceTreeText, xalanc::XercesCDATASectionBridge, xalanc::XercesCDATASectionWrapper, and xalanc::XercesTextWrapper.

◆ getPrefix()

virtual const XalanDOMString& xalanc::XalanText::getPrefix ( ) const
pure virtual

◆ getPreviousSibling()

virtual XalanNode* xalanc::XalanText::getPreviousSibling ( ) const
pure virtual

◆ isIndexed()

virtual bool xalanc::XalanText::isIndexed ( ) const
pure virtual

◆ isWhitespace()

virtual bool xalanc::XalanText::isWhitespace ( ) const
pure virtual

Determine whether the text node instance is composed entirely of XML whitespace.

Returns
true if the node is all XML whitespace, false if not

Implemented in xalanc::XalanCDATASection, xalanc::XercesTextBridge, xalanc::XercesCDATASectionBridge, xalanc::XObjectResultTreeFragProxyText, xalanc::XalanSourceTreeText, xalanc::XercesCDATASectionWrapper, xalanc::XercesTextWrapper, and xalanc::XalanSourceTreeTextIWS.

Referenced by xalanc::StylesheetRoot::shouldStripSourceNode().

◆ operator=()

XalanText& xalanc::XalanText::operator= ( const XalanText theSource)
protected

◆ operator==()

bool xalanc::XalanText::operator== ( const XalanText theRHS) const
protected

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