All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.xml.sax.CountingErrorHandler Maven / Gradle / Ivy

Go to download

Jing is a validator for RELAX NG and other schema languages. This project was taken from http://code.google.com/p/jing-trang and mavenized for inclusion in the Wicket Stuff HTML Validator. The code was taken from the 20091111 release.

There is a newer version: 1.11
Show newest version
package com.thaiopensource.xml.sax;

import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXParseException;
import org.xml.sax.SAXException;

public class CountingErrorHandler implements ErrorHandler {
  private ErrorHandler errorHandler;
  private int fatalErrorCount = 0;
  private int errorCount = 0;
  private int warningCount = 0;
  private boolean hadErrorOrFatalError = false;

  public CountingErrorHandler() {
    this(null);
  }

  public CountingErrorHandler(ErrorHandler errorHandler) {
    this.errorHandler = errorHandler;
  }

  public void reset() {
    fatalErrorCount = 0;
    errorCount = 0;
    warningCount = 0;
    hadErrorOrFatalError = false;
  }

  public boolean getHadErrorOrFatalError() {
    return hadErrorOrFatalError;
  }

  public int getFatalErrorCount() {
    return fatalErrorCount;
  }

  public int getErrorCount() {
    return errorCount;
  }

  public int getWarningCount() {
    return warningCount;
  }

  public ErrorHandler getErrorHandler() {
    return errorHandler;
  }

  public void setErrorHandler(ErrorHandler errorHandler) {
    this.errorHandler = errorHandler;
  }

  public void warning(SAXParseException exception)
          throws SAXException {
    warningCount++;
    if (errorHandler != null)
      errorHandler.warning(exception);
  }

  public void error(SAXParseException exception)
          throws SAXException {
    errorCount++;
    hadErrorOrFatalError = true;
    if (errorHandler != null)
      errorHandler.error(exception);
  }

  public void fatalError(SAXParseException exception)
          throws SAXException {
    fatalErrorCount++;
    hadErrorOrFatalError = true;
    if (errorHandler != null)
      errorHandler.fatalError(exception);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy