Home | History | Annotate | Download | only in validation

Lines Matching refs:errorHandler

23 import org.xml.sax.ErrorHandler;
117 * <tt>null</tt> {@link ErrorHandler} and
162 * from the {@link ValidatorHandler}. The {@link ErrorHandler}
188 * Sets the {@link ErrorHandler} to receive errors encountered
193 * during a validation. When an {@link ErrorHandler} is set,
195 * to the {@link ErrorHandler}.
201 * validation by returning normally from the {@link ErrorHandler}
204 * If any {@link Throwable} is thrown from an {@link ErrorHandler},
211 * {@link ErrorHandler}.
214 * When the {@link ErrorHandler} is null, the implementation will
215 * behave as if the following {@link ErrorHandler} is set:
217 * class DraconianErrorHandler implements {@link ErrorHandler} {
234 * @param errorHandler
237 public abstract void setErrorHandler(ErrorHandler errorHandler);
240 * Gets the current {@link ErrorHandler} set to this {@link ValidatorHandler}.
244 * the {@link #setErrorHandler(ErrorHandler)} method, or null
248 * @see #setErrorHandler(ErrorHandler)
250 public abstract ErrorHandler getErrorHandler();
300 * @see #setErrorHandler(ErrorHandler)