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 Summary
Fields inherited from class FilterReader
in -
Constructor Summary
ConstructorsConstructorDescriptionConstructor for "dummy" instances.Creates a new filtered reader. -
Method Summary
Modifier 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 BaseFilterReader
getInitialized, getProject, read, readFully, readLine, setInitialized, setProject, skipModifier and TypeMethodDescriptionprotected final booleanReturns the initialized status.protected final ProjectReturns the project this filter is part of.final intread(char[] cbuf, int off, int len) Reads characters into a portion of an array.protected final StringReads to the end of the stream, returning the contents as a String.protected final StringreadLine()Reads a line of text ending with '\n' (or until the end of the stream).protected final voidsetInitialized(boolean initialized) Sets the initialized status.final voidsetProject(Project project) Sets the project to work with.final longskip(long n) Skips characters.Methods inherited from class FilterReader
close, mark, markSupported, read, ready, resetMethods inherited from class Reader
nullReader, of, read, read, readAllAsString, readAllLines, transferTo
-
Constructor Details
-
BaseParamFilterReader
public BaseParamFilterReader()Constructor for "dummy" instances.- See Also:
-
BaseParamFilterReader
Creates a new filtered reader.- Parameters:
in- A Reader object providing the underlying stream. Must not benull.
-
-
Method Details
-
setParameters
Sets the parameters used by this filter, and sets the filter to an uninitialized status.- Specified by:
setParametersin interfaceParameterizable- Parameters:
parameters- The parameters to be used by this filter. Should not benull.
-
getParameters
Returns the parameters to be used by this filter.- Returns:
- the parameters to be used by this filter
-