| java.lang.Object java.io.OutputStream net.xoetrope.builder.editor.ant.taskdefs.JavacOutputStream
JavacOutputStream | class JavacOutputStream extends OutputStream (Code) | | Serves as an output stream to Javac. This let's us print messages
out to the project and detect whether or not Javac had an error
while compiling.
author: James Duncan Davidson (duncan@x180.com) |
Constructor Summary | |
| JavacOutputStream() Constructs a new JavacOutputStream with the given project
as the output source for messages. |
Method Summary | |
boolean | getErrorFlag() Returns the error status of the compile. | public void | write(int c) Write a character to the output stream. |
JavacOutputStream | JavacOutputStream()(Code) | | Constructs a new JavacOutputStream with the given project
as the output source for messages.
|
getErrorFlag | boolean getErrorFlag()(Code) | | Returns the error status of the compile. If no errors occured,
this method will return false, else this method will return true.
|
write | public void write(int c) throws IOException(Code) | | Write a character to the output stream. This method looks
to make sure that there isn't an error being reported and
will flush each line of input out to the project's log stream.
|
|
|