Package org.dom4j.tree
Class AbstractCDATA
- java.lang.Object
- 
- org.dom4j.tree.AbstractNode
- 
- org.dom4j.tree.AbstractCharacterData
- 
- org.dom4j.tree.AbstractCDATA
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Cloneable,- CDATA,- CharacterData,- Node
 - Direct Known Subclasses:
- FlyweightCDATA
 
 public abstract class AbstractCDATA extends AbstractCharacterData implements CDATA AbstractCDATAis an abstract base class for tree implementors to use for implementation inheritence.- See Also:
- Serialized Form
 
- 
- 
Field Summary- 
Fields inherited from class org.dom4j.tree.AbstractNodeNODE_TYPE_NAMES
 - 
Fields inherited from interface org.dom4j.NodeANY_NODE, ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_REFERENCE_NODE, MAX_NODE_TYPE, NAMESPACE_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE, UNKNOWN_NODE
 
- 
 - 
Constructor SummaryConstructors Constructor Description AbstractCDATA()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor visitor)acceptis the method used in the Visitor Pattern.java.lang.StringasXML()asXMLreturns the textual XML representation of this node.shortgetNodeType()Returns the code according to the type of node.java.lang.StringtoString()voidwrite(java.io.Writer writer)writewrites this node as the default XML notation for this node.- 
Methods inherited from class org.dom4j.tree.AbstractCharacterDataappendText, getPath, getUniquePath
 - 
Methods inherited from class org.dom4j.tree.AbstractNodeasXPathResult, clone, createPattern, createXPath, createXPathFilter, createXPathResult, detach, getDocument, getDocumentFactory, getName, getNodeTypeName, getParent, getPath, getStringValue, getText, getUniquePath, hasContent, isReadOnly, matches, numberValueOf, selectNodes, selectNodes, selectNodes, selectObject, selectSingleNode, setDocument, setName, setParent, setText, supportsParent, valueOf
 - 
Methods inherited from class java.lang.Objectequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.dom4j.CharacterDataappendText
 - 
Methods inherited from interface org.dom4j.NodeasXPathResult, clone, createXPath, detach, getDocument, getName, getNodeTypeName, getParent, getPath, getPath, getStringValue, getText, getUniquePath, getUniquePath, hasContent, isReadOnly, matches, numberValueOf, selectNodes, selectNodes, selectNodes, selectObject, selectSingleNode, setDocument, setName, setParent, setText, supportsParent, valueOf
 
- 
 
- 
- 
- 
Method Detail- 
getNodeTypepublic short getNodeType() Description copied from interface:NodeReturns the code according to the type of node. This makes processing nodes polymorphically much easier as the switch statement can be used instead of multiple if (instanceof) statements.- Specified by:
- getNodeTypein interface- Node
- Overrides:
- getNodeTypein class- AbstractNode
- Returns:
- a W3C DOM complient code for the node type such as ELEMENT_NODE or ATTRIBUTE_NODE
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
asXMLpublic java.lang.String asXML() Description copied from interface:NodeasXMLreturns the textual XML representation of this node.
 - 
writepublic void write(java.io.Writer writer) throws java.io.IOExceptionDescription copied from interface:Nodewritewrites this node as the default XML notation for this node. If you wish to control the XML output (such as for pretty printing, changing the indentation policy etc.) then please useXMLWriteror its derivations.- Specified by:
- writein interface- Node
- Overrides:
- writein class- AbstractNode
- Parameters:
- writer- is the- Writerto output the XML to
- Throws:
- java.io.IOException- DOCUMENT ME!
 
 
- 
 
-