1 12 13 package org.w3c.dom; 14 15 29 public interface CharacterData extends Node { 30 43 public String getData() 44 throws DOMException ; 45 56 public void setData(String data) 57 throws DOMException ; 58 59 64 public int getLength(); 65 66 81 public String substringData(int offset, 82 int count) 83 throws DOMException ; 84 85 93 public void appendData(String arg) 94 throws DOMException ; 95 96 106 public void insertData(int offset, 107 String arg) 108 throws DOMException ; 109 110 125 public void deleteData(int offset, 126 int count) 127 throws DOMException ; 128 129 148 public void replaceData(int offset, 149 int count, 150 String arg) 151 throws DOMException ; 152 153 } 154 | Popular Tags |