public final class SuffixLines extends BaseParamFilterReader implements ChainableReader
<suffixlines suffix="Foo"/>Or:
<filterreader classname="org.apache.tools.ant.filters.SuffixLines"> <param name="suffix" value="Foo"/> </filterreader>
| Constructor and Description | 
|---|
| SuffixLines()Constructor for "dummy" instances. | 
| SuffixLines(java.io.Reader in)Creates a new filtered reader. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.io.Reader | chain(java.io.Reader rdr)Creates a new SuffixLines filter using the passed in
 Reader for instantiation. | 
| int | read()Returns the next character in the filtered stream. | 
| void | setSuffix(java.lang.String suffix)Sets the suffix to add at the end of each input line. | 
getParameters, setParametersgetInitialized, getProject, read, readFully, readLine, setInitialized, setProject, skippublic SuffixLines()
BaseFilterReader()public SuffixLines(java.io.Reader in)
in - A Reader object providing the underlying stream.
           Must not be null.public int read()
         throws java.io.IOException
read in class java.io.FilterReaderjava.io.IOException - if the underlying stream throws an IOException
 during readingpublic void setSuffix(java.lang.String suffix)
suffix - The suffix to add at the end of each input line.
               May be null, in which case no suffix
               is added.public java.io.Reader chain(java.io.Reader rdr)
chain in interface ChainableReaderrdr - A Reader object providing the underlying stream.
            Must not be null.