gnu.xml.dom
public abstract class DomCharacterData extends DomNode implements CharacterData
Abstract "CharacterData" implementation. This facilitates reusing code in classes implementing subtypes of that DOM interface (Text, Comment, CDATASection).
Version: $Date: 2001/11/20 04:53:46 $
Method Summary | |
---|---|
void | appendData(String arg)
DOM L1
Appends the specified data to the value of this node.
|
void | deleteData(int offset, int count)
DOM L1
Modifies the value of this node.
|
NodeList | getChildNodes()
DOM L1
Returns an empty list of children. |
String | getData()
DOM L1
Returns the value of this node; same as getNodeValue. |
int | getLength()
DOM L1
Returns the length of the data. |
String | getNodeValue()
DOM L1
Returns the value of this node. |
void | insertData(int offset, String arg)
DOM L1
Modifies the value of this node. |
void | replaceData(int offset, int count, String arg)
DOM L1
Modifies the value of this node. |
void | setData(String data)
DOM L1
Assigns the value of this node; same as setNodeValue. |
void | setNodeValue(String value)
DOM L1
Assigns the value of this node.
|
String | substringData(int offset, int count)
DOM L1
Returns the specified substring. |
Source code is under GPL (with library exception) in the JAXP project at http://www.gnu.org/software/classpathx/jaxp
This documentation was derived from that source code on 2011-08-26.