Uses of Interface
org.biojava.utils.process.OutputHandler

Packages that use OutputHandler
org.biojava.utils.process Classes and interfaces to execute external processes and to handle its input and output streams in multiple threads. 
 

Uses of OutputHandler in org.biojava.utils.process
 

Classes in org.biojava.utils.process that implement OutputHandler
 class SimpleOutputHandler
          Simple output handler that pipes the output of an external process to an output stream.
 class WriterOutputHandler
          Simple output handler that writes the output of an external process to an writer.
 

Methods in org.biojava.utils.process that return OutputHandler
 OutputHandler ExternalProcess.getErrorHandler()
          Gets the output error handler which is responsible for the standard error output of the external process.
 OutputHandler ExternalProcess.getOutputHandler()
          Gets the output handler which is responsible for the standard output of the external process.
 

Methods in org.biojava.utils.process with parameters of type OutputHandler
 void ExternalProcess.setErrorHandler(OutputHandler errorHandler)
          Sets the output error handler which is responsible for the standard error output of the external process.
 void ExternalProcess.setOutputHandler(OutputHandler outputHandler)
          Sets the output handler which is responsible for the standard output of the external process.