The Spring Framework

org.springframework.beans.factory.parsing
Interface ProblemReporter

All Known Implementing Classes:
FailFastProblemReporter

public interface ProblemReporter

SPI interface allowing tools and other external processes to handle errors and warnings reported during bean definition parsing.

Since:
2.0
Author:
Rob Harrop
See Also:
Problem

Method Summary
 void error(Problem problem)
          Called when an error is encountered during the parsing process.
 void warning(Problem problem)
          Called when a warning is raised during the parsing process.
 

Method Detail

error

void error(Problem problem)
Called when an error is encountered during the parsing process.

Implementations may choose to treat errors as fatal.

Parameters:
problem - the source of the error (never null)

warning

void warning(Problem problem)
Called when a warning is raised during the parsing process.

Warnings are never considered to be fatal.

Parameters:
problem - the source of the warning (never null)

The Spring Framework

Copyright © 2002-2006 The Spring Framework.