Package org.apache.tools.ant.filters
Class BaseParamFilterReader
java.lang.Object
java.io.Reader
java.io.FilterReader
org.apache.tools.ant.filters.BaseFilterReader
org.apache.tools.ant.filters.BaseParamFilterReader
- All Implemented Interfaces:
- Closeable,- AutoCloseable,- Readable,- Parameterizable
- Direct Known Subclasses:
- ConcatFilter,- EscapeUnicode,- FixCrLfFilter,- HeadFilter,- LineContains,- LineContainsRegExp,- PrefixLines,- ReplaceTokens,- SortFilter,- StripLineBreaks,- StripLineComments,- SuffixLines,- TabsToSpaces,- TailFilter
Parameterized base class for core filter readers.
- 
Field SummaryFields inherited from class java.io.FilterReaderin
- 
Constructor SummaryConstructorsConstructorDescriptionConstructor for "dummy" instances.Creates a new filtered reader.
- 
Method SummaryModifier and TypeMethodDescriptionprotected final Parameter[]Returns the parameters to be used by this filter.final voidsetParameters(Parameter... parameters) Sets the parameters used by this filter, and sets the filter to an uninitialized status.Methods inherited from class org.apache.tools.ant.filters.BaseFilterReadergetInitialized, getProject, read, readFully, readLine, setInitialized, setProject, skipMethods inherited from class java.io.FilterReaderclose, mark, markSupported, read, ready, resetMethods inherited from class java.io.ReadernullReader, read, read, transferTo
- 
Constructor Details- 
BaseParamFilterReaderpublic BaseParamFilterReader()Constructor for "dummy" instances.- See Also:
 
- 
BaseParamFilterReaderCreates a new filtered reader.- Parameters:
- in- A Reader object providing the underlying stream. Must not be- null.
 
 
- 
- 
Method Details- 
setParametersSets the parameters used by this filter, and sets the filter to an uninitialized status.- Specified by:
- setParametersin interface- Parameterizable
- Parameters:
- parameters- The parameters to be used by this filter. Should not be- null.
 
- 
getParametersReturns the parameters to be used by this filter.- Returns:
- the parameters to be used by this filter
 
 
-