org.springframework.util.xml.SimpleTransformErrorListener Java Examples
The following examples show how to use
org.springframework.util.xml.SimpleTransformErrorListener.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: XsltView.java From spring-analysis-note with MIT License | 2 votes |
/** * Set an implementation of the {@link javax.xml.transform.ErrorListener} * interface for custom handling of transformation errors and warnings. * <p>If not set, a default * {@link org.springframework.util.xml.SimpleTransformErrorListener} is * used that simply logs warnings using the logger instance of the view class, * and rethrows errors to discontinue the XML transformation. * @see org.springframework.util.xml.SimpleTransformErrorListener */ public void setErrorListener(@Nullable ErrorListener errorListener) { this.errorListener = (errorListener != null ? errorListener : new SimpleTransformErrorListener(logger)); }
Example #2
Source File: XsltView.java From java-technology-stack with MIT License | 2 votes |
/** * Set an implementation of the {@link javax.xml.transform.ErrorListener} * interface for custom handling of transformation errors and warnings. * <p>If not set, a default * {@link org.springframework.util.xml.SimpleTransformErrorListener} is * used that simply logs warnings using the logger instance of the view class, * and rethrows errors to discontinue the XML transformation. * @see org.springframework.util.xml.SimpleTransformErrorListener */ public void setErrorListener(@Nullable ErrorListener errorListener) { this.errorListener = (errorListener != null ? errorListener : new SimpleTransformErrorListener(logger)); }
Example #3
Source File: XsltView.java From lams with GNU General Public License v2.0 | 2 votes |
/** * Set an implementation of the {@link javax.xml.transform.ErrorListener} * interface for custom handling of transformation errors and warnings. * <p>If not set, a default * {@link org.springframework.util.xml.SimpleTransformErrorListener} is * used that simply logs warnings using the logger instance of the view class, * and rethrows errors to discontinue the XML transformation. * @see org.springframework.util.xml.SimpleTransformErrorListener */ public void setErrorListener(ErrorListener errorListener) { this.errorListener = (errorListener != null ? errorListener : new SimpleTransformErrorListener(logger)); }
Example #4
Source File: XsltView.java From spring4-understanding with Apache License 2.0 | 2 votes |
/** * Set an implementation of the {@link javax.xml.transform.ErrorListener} * interface for custom handling of transformation errors and warnings. * <p>If not set, a default * {@link org.springframework.util.xml.SimpleTransformErrorListener} is * used that simply logs warnings using the logger instance of the view class, * and rethrows errors to discontinue the XML transformation. * @see org.springframework.util.xml.SimpleTransformErrorListener */ public void setErrorListener(ErrorListener errorListener) { this.errorListener = (errorListener != null ? errorListener : new SimpleTransformErrorListener(logger)); }