uk.ac.bham.gloss
Interface MessageCallBack

All Known Implementing Classes:
ErrorMessages, NullMessages, PrintStreamMessages, StdOutMessages

public interface MessageCallBack

Interface providing a call-back mechanism for error-messages etc. Copyright Richard Kaye 2007-8 for GLOSS, http://gloss.bham.ac.uk Usage permitted according to the GPL. No waranty.


Method Summary
 void print(java.lang.String s)
          Prints the String s to the message call-back mechanism, without carriage return.
 void println()
          Prints carriage return.
 void println(java.lang.String s)
          Prints the String s to the message call-back mechanism, with carriage return.
 

Method Detail

println

void println()
Prints carriage return.


println

void println(java.lang.String s)
Prints the String s to the message call-back mechanism, with carriage return.


print

void print(java.lang.String s)
Prints the String s to the message call-back mechanism, without carriage return.