[]
        
(Showing Draft Content)

CSJ2K.j2k.util.StreamMsgLogger.println

println Method

println(string, int, int)

Prints the string 'str' to the 'out' stream, appending a newline. The message is reformatted to the line width given to the constructors and using 'flind' characters to indent the first line and 'ind' characters to indent the second line. However, any newlines appearing in 'str' are respected. The output device may or may not display the string until flush() is called, depending on the autoflush state of the PrintWriter, to be sure flush() should be called to write the string to the device. This method just prints the string, the string does not make part of a "message" in the sense that noe severity is associated to it.

Declaration
public virtual void println(string str, int flind, int ind)
Parameters
Type Name Description
string str

The string to print

int flind

Indentation of the first line

int ind

Indentation of any other lines.

Implements