01: package com.jeta.forms.store.xml.parser;
02:
03: import org.xml.sax.SAXException;
04:
05: public interface XMLHandler {
06: public void characters(char[] ch, int start, int length)
07: throws SAXException;
08:
09: public void startElement(XMLNodeContext ctx) throws SAXException;
10:
11: public void endElement(XMLNodeContext ctx) throws SAXException;
12: }
|