Lines Matching refs:handler
68 private final DocumentHandler handler = new DocumentHandler();
104 * @param exceptionListener the exception handler for the stream;
119 * @param exceptionListener the exception handler for the stream, or
154 * @param el the exception handler for the parser,
155 * or {@code null} to use the default exception handler
165 this.handler.setClassLoader(cl);
166 this.handler.setOwner(this);
201 XMLDecoder.this.handler.parse(XMLDecoder.this.input);
205 this.array = this.handler.getObjects();
211 * Sets the exception handler for this stream to <code>exceptionListener</code>.
212 * The exception handler is notified when this stream catches recoverable
215 * @param exceptionListener The exception handler for this stream;
224 this.handler.setExceptionListener(exceptionListener);
228 * Gets the exception handler for this stream.
230 * @return The exception handler for this stream.
236 return this.handler.getExceptionListener();
278 * Creates a new handler for SAX parser
289 * @param owner the owner of the default handler
291 * @param el the exception handler for the parser,
292 * or {@code null} to use the default exception handler
300 DocumentHandler handler = new DocumentHandler();
301 handler.setOwner(owner);
302 handler.setExceptionListener(el);
303 handler.setClassLoader(cl);
304 return handler;