Lines Matching refs:ContentHandler

29 import org.xml.sax.ContentHandler;
50 * {@link ValidatorHandler} extends from {@link ContentHandler},
51 * but it refines the underlying {@link ContentHandler} in
57 * Similarly, the user-specified {@link ContentHandler} will receive non-null
61 * {@link ContentHandler#startPrefixMapping(String,String)} and
62 * {@link ContentHandler#endPrefixMapping(String)} are invoked
63 * properly. Similarly, the user-specified {@link ContentHandler}
66 * bindings, the user-specified {@link ContentHandler} will receive
70 * {@link ContentHandler#startElement(String,String,String,Attributes)} method
89 * sure that the user's {@link ContentHandler} will see
92 * {@link ContentHandler#startElement(String,String,String,Attributes)}
95 * user-specified {@link ContentHandler}.
99 * {@link ContentHandler#startPrefixMapping(String,String)} and
100 * {@link ContentHandler#endPrefixMapping(String)} methods of the
101 * {@link ContentHandler} specified by the user.)
113 public abstract class ValidatorHandler implements ContentHandler {
128 * Sets the {@link ContentHandler} which receives
132 * When a {@link ContentHandler} is specified, a
135 * specified {@link ContentHandler}.
148 * {@link ContentHandler#startElement(String, String, String, Attributes)},
149 * {@link ContentHandler#endElement(String, String, String)},
150 * {@link ContentHandler#startDocument()}, or
151 * {@link ContentHandler#endDocument()}
153 * the same method on the user-specified {@link ContentHandler}
164 * When a callback method on the specified {@link ContentHandler}
173 * A {@link ContentHandler} or a null value.
175 public abstract void setContentHandler(ContentHandler receiver);
178 * Gets the {@link ContentHandler} which receives the
187 * @see #setContentHandler(ContentHandler)
189 public abstract ContentHandler getContentHandler();