1 16 19 20 package com.sun.org.apache.xml.internal.dtm.ref; 21 22 import org.xml.sax.ContentHandler ; 23 import org.xml.sax.InputSource ; 24 import org.xml.sax.SAXException ; 25 26 35 public interface IncrementalSAXSource 36 { 37 41 43 public void setContentHandler(ContentHandler handler); 44 45 47 public void setLexicalHandler(org.xml.sax.ext.LexicalHandler handler); 48 49 51 public void setDTDHandler(org.xml.sax.DTDHandler handler); 52 53 57 71 public Object deliverMoreNodes (boolean parsemore); 72 73 77 85 public void startParse(InputSource source) throws SAXException ; 86 87 } | Popular Tags |