1 22 23 package org.xquark.util; 24 25 import org.xml.sax.Attributes ; 26 import org.xml.sax.SAXException ; 27 28 public interface ElementHandler { 29 30 31 public void characters(char[] ch, int start, int length) 32 throws SAXException ; 33 public void endElement(String namespaceURI, String localName) 34 throws SAXException ; 35 public void ignorableWhitespace(char[] ch, int start, int length) 36 throws SAXException ; 37 public void processingInstruction(String target, String data) 38 throws SAXException ; 39 public void skippedEntity(String name) 40 throws SAXException ; 41 public ElementHandler startElement(String namespaceURI, String localName, 42 Attributes atts) 43 throws SAXException ; 44 } 45 | Popular Tags |