|
ritopt API Documentation by Damian Eads |
||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
java.lang.Object | +--gnu.dtools.ritopt.StreamPrinter
Reads data from an input stream and outputs to a print stream. This class is used by the OptionMenu class to read from both standard output and standard error simultaneously when a shell command is executed. Since the StreamPrinter processes streams on a separate thread, deadlock is prevented.
Copyright (C) Damian Ryan Eads, 2001. All Rights Reserved. ritopt is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. ritopt is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ritopt; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
| Constructor Summary | |
StreamPrinter(java.io.InputStream s,
java.io.PrintStream p)
Constructs a new StreamPrinter. |
|
| Method Summary | |
boolean |
isStopped()
Returns whether this StreamPrinter has stopped processing. |
void |
join()
Joins this StreamPrinter's thread with the other threads. |
void |
run()
Start the StreamPrinter thread. |
void |
setFlush(boolean flush)
Sets whether the output stream should be flushed after each output step. |
void |
setStop(Stoppable tostop)
Sets the object to stop when this object is finished. |
void |
start()
Starts the thread associated with this StreamPrinter. |
void |
stop()
Stops this StreamPrinter's processing. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public StreamPrinter(java.io.InputStream s,
java.io.PrintStream p)
s - The stream to read from.p - The stream to output to.| Method Detail |
public void start()
throws java.lang.InterruptedException
public void setStop(Stoppable tostop)
tostop - The object to stop.public boolean isStopped()
isStopped in interface Stoppablegnu.dtools.ritopt.Stoppablepublic void setFlush(boolean flush)
b - A boolean value.public void stop()
stop in interface Stoppable
public void join()
throws java.lang.InterruptedException
public void run()
run in interface java.lang.Runnable
|
Copyright (C) Damian Ryan Eads, 2001. All Rights Reserved. |
||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||