public class TextImpl extends DefaultText
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE| Constructor and Description |
|---|
TextImpl(StringBuffer str,
SchemaDOM sDOM,
int row,
int col) |
| Modifier and Type | Method and Description |
|---|---|
String |
getData()
The character data of the node that implements this interface.
|
int |
getLength()
The number of 16-bit units that are available through
data
and the substringData method below. |
Node |
getNextSibling() |
Node |
getParentNode() |
Node |
getPreviousSibling() |
String |
substringData(int offset,
int count)
Extracts a range of data from the node.
|
appendData, deleteData, getWholeText, insertData, isElementContentWhitespace, replaceData, replaceWholeText, setData, splitTextgetLocalName, getNamespaceURI, getNodeName, getNodeType, getPrefix, getReadOnly, setReadOnlyappendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getNodeValue, getOwnerDocument, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserDataclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitappendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getPrefix, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserDatapublic TextImpl(StringBuffer str, SchemaDOM sDOM, int row, int col)
public Node getParentNode()
getParentNode in interface NodegetParentNode in class DefaultNodepublic Node getPreviousSibling()
getPreviousSibling in interface NodegetPreviousSibling in class DefaultNodepublic Node getNextSibling()
getNextSibling in interface NodegetNextSibling in class DefaultNodepublic String getData() throws DOMException
CharacterData node. However,
implementation limits may mean that the entirety of a node's data may
not fit into a single DOMString. In such cases, the user
may call substringData to retrieve the data in
appropriately sized pieces.getData in interface CharacterDatagetData in class DefaultTextDOMException - NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.DOMException - DOMSTRING_SIZE_ERR: Raised when it would return more characters than
fit in a DOMString variable on the implementation
platform.public int getLength()
data
and the substringData method below. This may have the
value zero, i.e., CharacterData nodes may be empty.getLength in interface CharacterDatagetLength in class DefaultTextpublic String substringData(int offset, int count) throws DOMException
substringData in interface CharacterDatasubstringData in class DefaultTextoffset - Start offset of substring to extract.count - The number of 16-bit units to extract.offset and
count exceeds the length, then all 16-bit
units to the end of the data are returned.DOMException - INDEX_SIZE_ERR: Raised if the specified offset is
negative or greater than the number of 16-bit units in
data, or if the specified count is
negative.
DOMString.Copyright © 2012 JBoss by Red Hat. All Rights Reserved.