|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.google.gwt.core.client.JavaScriptObject com.google.gwt.dom.client.Node com.google.gwt.dom.client.Text
public class Text
The Text interface represents textual content.
Field Summary |
---|
Fields inherited from class com.google.gwt.dom.client.Node |
---|
DOCUMENT_NODE, ELEMENT_NODE, TEXT_NODE |
Constructor Summary | |
---|---|
protected |
Text()
|
Method Summary | |
---|---|
static Text |
as(Node node)
Assert that the given Node is of type Node.TEXT_NODE and
automatically typecast it. |
void |
deleteData(int offset,
int length)
Deletes data at the given [offset, length] range. |
java.lang.String |
getData()
The character data of this text node. |
int |
getLength()
The number of characters available through the data property. |
void |
insertData(int offset,
java.lang.String data)
Inserts character data at the given offset. |
void |
replaceData(int offset,
int length,
java.lang.String data)
Replaces data at the given [offset, length] range with the given string. |
void |
setData(java.lang.String data)
The character data of this text node. |
Text |
splitText(int offset)
Splits the data in this node into two separate text nodes. |
Methods inherited from class com.google.gwt.dom.client.Node |
---|
appendChild, as, cloneNode, getChild, getChildCount, getChildNodes, getFirstChild, getLastChild, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentElement, getParentNode, getPreviousSibling, hasChildNodes, hasParentElement, insertAfter, insertBefore, insertFirst, is, isOrHasChild, removeAllChildren, removeChild, removeFromParent, replaceChild, setNodeValue |
Methods inherited from class com.google.gwt.core.client.JavaScriptObject |
---|
cast, createArray, createArray, createFunction, createObject, equals, hashCode, toSource, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected Text()
Method Detail |
---|
public static Text as(Node node)
Node
is of type Node.TEXT_NODE
and
automatically typecast it.
public final void deleteData(int offset, int length)
public final java.lang.String getData()
public final int getLength()
public final void insertData(int offset, java.lang.String data)
public final void replaceData(int offset, int length, java.lang.String data)
public final void setData(java.lang.String data)
public final Text splitText(int offset)
|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |