org.cyberneko.html
Interface HTMLErrorReporter

All Known Implementing Classes:
HTMLConfiguration.ErrorReporter

public interface HTMLErrorReporter

Defines an error reporter for reporting HTML errors. There is no such thing as a fatal error in parsing HTML. I/O errors are fatal but should throw an IOException directly instead of reporting an error.

When used in a configuration, the error reporter instance should be set as a property with the following property identifier:

 "http://cyberneko.org/html/internal/error-reporter" in the
 
Components in the configuration can query the error reporter using this property identifier.

Note: All reported errors are within the domain "http://cyberneko.org/html".

Version:
$Id$
Author:
Andy Clark

Method Summary
 String formatMessage(String key, Object[] args)
          Format message without reporting error.
 void reportError(String key, Object[] args)
          Reports an error.
 void reportWarning(String key, Object[] args)
          Reports a warning.
 

Method Detail

formatMessage

public String formatMessage(String key,
                            Object[] args)
Format message without reporting error.


reportWarning

public void reportWarning(String key,
                          Object[] args)
                   throws XMLParseException
Reports a warning.

Throws:
XMLParseException

reportError

public void reportError(String key,
                        Object[] args)
                 throws XMLParseException
Reports an error.

Throws:
XMLParseException


(C) Copyright 2002-2004, Andy Clark. All rights reserved.