1 7 package org.xml.sax; 8 9 10 58 public interface ContentHandler 59 { 60 61 88 public void setDocumentLocator (Locator locator); 89 90 91 102 public void startDocument () 103 throws SAXException ; 104 105 106 127 public void endDocument() 128 throws SAXException ; 129 130 131 169 public void startPrefixMapping (String prefix, String uri) 170 throws SAXException ; 171 172 173 189 public void endPrefixMapping (String prefix) 190 throws SAXException ; 191 192 193 257 public void startElement (String uri, String localName, 258 String qName, Attributes atts) 259 throws SAXException ; 260 261 262 283 public void endElement (String uri, String localName, 284 String qName) 285 throws SAXException ; 286 287 288 331 public void characters (char ch[], int start, int length) 332 throws SAXException ; 333 334 335 360 public void ignorableWhitespace (char ch[], int start, int length) 361 throws SAXException ; 362 363 364 386 public void processingInstruction (String target, String data) 387 throws SAXException ; 388 389 390 415 public void skippedEntity (String name) 416 throws SAXException ; 417 } 418 419 | Popular Tags |