public class

SimpleTransformErrorListener

extends Object
implements ErrorListener
java.lang.Object
   ↳ org.springframework.util.xml.SimpleTransformErrorListener

Class Overview

Simple javax.xml.transform.ErrorListener implementation: logs warnings using the given Commons Logging logger instance, and rethrows errors to discontinue the XML transformation.

Summary

Public Constructors
SimpleTransformErrorListener(Log logger)
Create a new SimpleTransformErrorListener for the given Commons Logging logger instance.
Public Methods
void error(TransformerException ex)
void fatalError(TransformerException ex)
void warning(TransformerException ex)
[Expand]
Inherited Methods
From class java.lang.Object
From interface javax.xml.transform.ErrorListener

Public Constructors

public SimpleTransformErrorListener (Log logger)

Also: SpringCore

Create a new SimpleTransformErrorListener for the given Commons Logging logger instance.

Public Methods

public void error (TransformerException ex)

Also: SpringCore

public void fatalError (TransformerException ex)

Also: SpringCore

public void warning (TransformerException ex)

Also: SpringCore