Class VelocityTemplateFilter
java.lang.Object
org.apache.torque.generator.template.velocity.VelocityTemplateFilter
- All Implemented Interfaces:
TemplateFilter
A Filter for velocity templates. It has the effect of beautifying the output
of the velocity outlet.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfilter(InputStream resource, String encoding) This method filters the template and replaces some unwanted characters.
-
Constructor Details
-
VelocityTemplateFilter
public VelocityTemplateFilter()
-
-
Method Details
-
filter
This method filters the template and replaces some unwanted characters. For example it removes leading spaces in front of velocity commands and replaces tabs with spaces to prevent bounces in different code editors with different tab-width-setting.- Specified by:
filterin interfaceTemplateFilter- Parameters:
resource- the input stream to filter.encoding- the encoding to use, or null for the system encoding.- Returns:
- the filtered input stream.
- Throws:
IOException- if creating, reading or writing to a stream fails.
-