1 43 44 package org.jfree.xml; 45 46 import org.xml.sax.Attributes ; 47 import org.xml.sax.SAXException ; 48 49 57 public interface ElementDefinitionHandler { 58 59 67 public void startElement(String tagName, Attributes attrs) throws SAXException ; 68 69 77 public void characters(char[] ch, int start, int length) throws SAXException ; 78 79 86 public void endElement(String tagName) throws SAXException ; 87 88 93 public Parser getParser(); 94 95 } 96 | Popular Tags |