public void setNodeValue(String value) throws DOMException { super.setNodeValue(value); }
public void replaceData(int offset, int count, String arg) throws DOMException { super.replaceData(offset, count, arg); }
public void insertData(int offset, String arg) throws DOMException { super.insertData(offset, arg); }
public void deleteData(int offset, int count) throws DOMException { super.deleteData(offset, count); }
public void appendData(char[] data, int start, int howmany) throws DOMException { super.appendData(data, start, howmany); }
public void appendData(String arg) throws DOMException { super.appendData(arg); }