RedirectingOutputStreampublic class RedirectingOutputStream extends org.apache.tools.ant.util.LineOrientedOutputStream A dummy stream that just passes stuff to the parser. |
Fields Summary |
---|
private final ChangeLogParser | parser |
Constructors Summary |
---|
public RedirectingOutputStream(ChangeLogParser parser)Creates a new instance of this class.
this.parser = parser;
|
Methods Summary |
---|
protected void | processLine(java.lang.String line)Logs a line to the log system of ant.
parser.stdout(line);
|
|