Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 807 → Rev 808

/sun/xmleditor/trunk/src/parser/ValidationErrorHandler.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.25 $
* @version $Revision: 1.26 $
*
* Last modification: $Date: 2003/07/24 19:43:44 $
* $Id: ValidationErrorHandler.java,v 1.25 2003/07/24 19:43:44 smcsporr Exp $
* Last modification: $Date: 2003/07/25 11:52:17 $
* $Id: ValidationErrorHandler.java,v 1.26 2003/07/25 11:52:17 smcsporr Exp $
*/
 
package src.parser;
31,7 → 31,7
*
* @author S. McSporran
*
* @version $Revision: 1.25 $ Last modification: $Date: 2003/07/24 19:43:44 $
* @version $Revision: 1.26 $ Last modification: $Date: 2003/07/25 11:52:17 $
*/
public class ValidationErrorHandler extends DefaultErrorHandler {
 
79,10 → 79,10
 
/**
* A method that catches SAX warnings and sends them to the log panel.
* Warnings indicate that something might be missing or incorrect in a XML file,
* Warnings indicate that something might be missing or incorrect in an XML file,
* while no XML wellformedness rule has been broken.
*
* @param saxpe A warning sent by a SAX Parser.
* @param saxpe A warning event sent by a SAX parser.
*
* author S. McSporran
*
98,10 → 98,10
/**
* A method that catches SAX errors and sends them to the log panel. Errors
* occur during validation, if a grammar rule has been broken,but the parser
* occur during validation, if a grammar rule has been broken, but the parser
* will be able to continue.
*
* @param saxpe An error sent by a SAX Parser.
* @param saxpe An error event sent by a SAX parser.
*
* author S. McSporran
*
123,7 → 123,7
* Fatal errors indicate that a grammar rule has been broken that makes continued
* parsing impossible.
*
* @param saxpe A fatal error sent by a SAX Parser.
* @param saxpe A fatal error event sent by a SAX parser.
*
* author S. McSporran
*