kawigi.util
Interface ConsoleDisplay

All Known Implementing Classes:
SimpleOutputComponent

public interface ConsoleDisplay

An encapsulation of the output method from a process's standard output or error streams. This allows better encapsulation, looser coupling, and more flexibility in changing the way things are displayed with the compiling and testing output.


Method Summary
 void clear()
          Called to clear the output display.
 void print(java.lang.String s)
          Called to append a string to the output display
 void println(java.lang.String s)
          Called to append a line to the output display.
 

Method Detail

print

void print(java.lang.String s)
Called to append a string to the output display


println

void println(java.lang.String s)
Called to append a line to the output display.


clear

void clear()
Called to clear the output display.