FileDocCategorySizeDatePackage
IOutput.javaAPI DocGlassfish v2 API2800Fri May 04 22:25:20 BST 2007com.sun.enterprise.cli.framework

IOutput

public interface IOutput
Base interface for all types of output.

Fields Summary
Constructors Summary
Methods Summary
public voidclose()
Closes the underlying output stream.

public voidflush()
Flushes this output stream and forces any buffered output bytes to be written out.

public voidprint(java.lang.String s)
Print a string.

param
s - The String to be printed

public voidprint(java.lang.Object msg)
Print the message.

param
msg - object on which toString() will be called.

public voidprintln(java.lang.String s)
Print a String and then terminate the line.

param
s - The String to be printed

public voidprintln(java.lang.Object msg)
Print the message and then terminate the line.

param
msg - object on which toString() will be called.