org.sandev.tools.UIProcessor
Class TestStatus

java.lang.Object
  extended by org.sandev.tools.UIProcessor.TestStatus
All Implemented Interfaces:
org.sandev.basics.MessageDriver.StatusOutput

public class TestStatus
extends java.lang.Object
implements org.sandev.basics.MessageDriver.StatusOutput

A simple class for writing println output to the ServletOutputStream without any PrintWriter holdups. Still can't get this to write output continuously. May not be possible depending on the the servlet environment but at least this isolates the code for experimentation purposes.


Field Summary
protected  javax.servlet.http.HttpServletResponse res
          The servlet response info we need to do our work.
 
Constructor Summary
TestStatus(javax.servlet.http.HttpServletResponse res)
          Ctor initializes output stream.
 
Method Summary
 void println(java.lang.String text)
          Dump the output to our stream if possible.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

res

protected javax.servlet.http.HttpServletResponse res
The servlet response info we need to do our work.

Constructor Detail

TestStatus

public TestStatus(javax.servlet.http.HttpServletResponse res)
Ctor initializes output stream.

Method Detail

println

public void println(java.lang.String text)
Dump the output to our stream if possible.

Specified by:
println in interface org.sandev.basics.MessageDriver.StatusOutput