Methods Summary |
---|
public void | appendData(java.lang.String arg)
throw new UnsupportedOperationException();
|
public void | deleteData(int offset, int count)
throw new UnsupportedOperationException();
|
public java.lang.String | getData()
return text().getData();
|
public int | getLength()
return text().getLength();
|
public java.lang.String | getWholeText()
throw operationNotSupported();
|
public void | insertData(int offset, java.lang.String arg)
throw new UnsupportedOperationException();
|
public boolean | isElementContentWhitespace()
throw operationNotSupported();
|
public void | replaceData(int offset, int count, java.lang.String arg)
throw new UnsupportedOperationException();
|
public org.w3c.dom.Text | replaceWholeText(java.lang.String string)
throw operationNotSupported();
|
public void | setData(java.lang.String data)
throw new UnsupportedOperationException();
|
public org.w3c.dom.Text | splitText(int offset)
throw new UnsupportedOperationException();
|
public java.lang.String | substringData(int offset, int count)
return text().substringData(offset, count);
|
org.w3c.dom.Text | text()
return (Text) getPropertyValue();
|
public java.lang.String | toString()
return "ProxyTextNode for: " + text();
|