Home | History | Annotate | Download | only in sax

Lines Matching refs:ContentHandler

23 import org.xml.sax.ContentHandler;
48 * Create a SAXResult that targets a SAX2 {@link org.xml.sax.ContentHandler}.
50 * @param handler Must be a non-null ContentHandler reference.
52 public SAXResult(ContentHandler handler) {
57 * Set the target to be a SAX2 {@link org.xml.sax.ContentHandler}.
59 * @param handler Must be a non-null ContentHandler reference.
61 public void setHandler(ContentHandler handler) {
66 * Get the {@link org.xml.sax.ContentHandler} that is the Result.
68 * @return The ContentHandler that is to be transformation output.
70 public ContentHandler getHandler() {
79 * transformer to cast the {@link org.xml.sax.ContentHandler} to a
100 * with the {@link org.xml.sax.ContentHandler}.
125 private ContentHandler handler;