org.apache.xalan.stree
Class CommentImpl
java.lang.Object
|
+--org.apache.xml.utils.UnImplNode
|
+--org.apache.xalan.stree.Child
|
+--org.apache.xalan.stree.TextImpl
|
+--org.apache.xalan.stree.CommentImpl
- public class CommentImpl
- extends TextImpl
- implements Comment
**For internal use only**
Class to hold information about a comment node
Method Summary |
java.lang.String |
getLocalName()
Returns the local part of the qualified name of this node. |
java.lang.String |
getNodeName()
Returns the node name. |
short |
getNodeType()
A short integer indicating what type of node this is. |
Methods inherited from class org.apache.xalan.stree.Child |
getAttributes,
getFirstChild,
getLastChild,
getLevel,
getNamespaceURI,
getNextSibling,
getOwnerDocument,
getParentNode,
getPrefix,
getPreviousSibling,
getTagName,
getUid,
hasChildNodes,
isComplete,
isNamespaceNode,
isSupported,
setAttribute,
setComplete,
setLevel |
Methods inherited from class org.apache.xml.utils.UnImplNode |
appendChild,
appendData,
cloneNode,
createAttribute,
createAttributeNS,
createCDATASection,
createComment,
createDocumentFragment,
createElement,
createElementNS,
createEntityReference,
createProcessingInstruction,
createTextNode,
deleteData,
error,
error,
getAttribute,
getAttributeNode,
getAttributeNodeNS,
getAttributeNS,
getChildNodes,
getDoctype,
getDocumentElement,
getElementById,
getElementsByTagName,
getElementsByTagNameNS,
getImplementation,
getOwnerElement,
getSpecified,
hasAttribute,
hasAttributeNS,
hasAttributes,
importNode,
insertBefore,
insertData,
item,
normalize,
removeAttribute,
removeAttributeNode,
removeAttributeNS,
removeChild,
replaceChild,
replaceData,
setAttributeNode,
setAttributeNodeNS,
setAttributeNS,
setData,
setNodeValue,
setPrefix,
setValue,
splitText,
substringData |
Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
CommentImpl
public CommentImpl(DocumentImpl doc,
java.lang.String data)
- Constructor CommentImpl
- Parameters:
doc
- Document objectdata
- Comment data
CommentImpl
public CommentImpl(DocumentImpl doc,
char[] ch,
int start,
int length)
- Constructor CommentImpl
- Parameters:
doc
- Document objectch
- Character array of comment datastart
- Beginning of comment data in arraylength
- Length of comment data in array
getNodeType
public short getNodeType()
- A short integer indicating what type of node this is. The named
constants for this value are defined in the org.w3c.dom.Node interface.
- Returns:
- node type
- Overrides:
- getNodeType in class TextImpl
getNodeName
public java.lang.String getNodeName()
- Returns the node name.
- Returns:
- node name
- Overrides:
- getNodeName in class TextImpl
getLocalName
public java.lang.String getLocalName()
- 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
.
- Returns:
- the local part of the qualified name of this node
- Overrides:
- getLocalName in class TextImpl
- Since:
- DOM Level 2
Copyright � 2000 Apache XML Project. All Rights Reserved.