示例#1
0
 public void setNodeValue(String value) throws DOMException {
   super.setNodeValue(value);
 }
示例#2
0
 public void replaceData(int offset, int count, String arg) throws DOMException {
   super.replaceData(offset, count, arg);
 }
示例#3
0
 public void insertData(int offset, String arg) throws DOMException {
   super.insertData(offset, arg);
 }
示例#4
0
 public void deleteData(int offset, int count) throws DOMException {
   super.deleteData(offset, count);
 }
示例#5
0
 public void appendData(char[] data, int start, int howmany) throws DOMException {
   super.appendData(data, start, howmany);
 }
示例#6
0
 public void appendData(String arg) throws DOMException {
   super.appendData(arg);
 }