| com.google.gwt.xml.client.Text
All known Subclasses: com.google.gwt.xml.client.impl.TextImpl,
Text | public interface Text extends CharacterData(Code) | | This interface describes text nodes, as might occur between tags. These may
also be CDATASection nodes.
|
Method Summary | |
public Text | splitText(int offset) Splits the node into two text nodes. |
splitText | public Text splitText(int offset)(Code) | | Splits the node into two text nodes. The current node is truncated to
offset , and the new node is inserted as the next sibling.
The new node created is also returned.
Parameters: offset - how far from the beginning to start splitting new Text node containing the data after offset |
|
|