Home | History | Annotate | Download | only in validation

Lines Matching refs:errorHandler

25 import org.xml.sax.ErrorHandler;
60 * <tt>null</tt> {@link ErrorHandler} and
74 * <p>The reset <code>Validator</code> is not guaranteed to have the same {@link LSResourceResolver} or {@link ErrorHandler}
76 * <code>LSResourceResolver</code> and <code>ErrorHandler</code>.</p>
89 * @see #setErrorHandler(ErrorHandler)
151 * {@link ErrorHandler}.
155 * but none of them were fatal and the {@link ErrorHandler} didn't
182 * If the {@link ErrorHandler} throws a {@link SAXException} or
183 * if a fatal error is found and the {@link ErrorHandler} returns
200 * Sets the {@link ErrorHandler} to receive errors encountered
205 * during a validation. When an {@link ErrorHandler} is set,
207 * to the {@link ErrorHandler}.
213 * validation by returning normally from the {@link ErrorHandler}
216 * If any {@link Throwable} is thrown from an {@link ErrorHandler},
223 * {@link ErrorHandler}.
226 * When the {@link ErrorHandler} is null, the implementation will
227 * behave as if the following {@link ErrorHandler} is set:
229 * class DraconianErrorHandler implements {@link ErrorHandler} {
246 * @param errorHandler
249 public abstract void setErrorHandler(ErrorHandler errorHandler);
252 * Gets the current {@link ErrorHandler} set to this {@link Validator}.
256 * the {@link #setErrorHandler(ErrorHandler)} method, or null
260 * @see #setErrorHandler(ErrorHandler)
262 public abstract ErrorHandler getErrorHandler();
312 * @see #setErrorHandler(ErrorHandler)