1 8 package com.sun.japex.testsuite.impl.runtime; 9 10 import org.xml.sax.Attributes ; 11 import org.xml.sax.SAXException ; 12 13 26 public interface UnmarshallingEventHandler { 27 28 32 Object owner(); 33 34 void enterElement(String uri, String local, String qname, Attributes atts) throws SAXException ; 38 void leaveElement(String uri, String local, String qname ) throws SAXException ; 39 void text(String s) throws SAXException ; 40 void enterAttribute(String uri, String local, String qname ) throws SAXException ; 41 void leaveAttribute(String uri, String local, String qname ) throws SAXException ; 42 void leaveChild(int nextState) throws SAXException ; 43 } 44 | Popular Tags |