| java.lang.Object jj2000.j2k.util.MsgPrinter
MsgPrinter | public class MsgPrinter (Code) | | This utility class formats messages to the specified line width, by
inserting line-breaks between words, and printing the resulting
lines.
|
Field Summary | |
public int | lw |
Constructor Summary | |
public | MsgPrinter(int linewidth) Creates a new message printer with the specified line width and
with the default locale. |
Method Summary | |
public int | getLineWidth() Returns the line width that is used for formatting. | public void | print(PrintWriter out, int flind, int ind, String msg) Formats the message to print in the current line width, by
breaking the message into lines between words. | public void | setLineWidth(int linewidth) Sets the line width to the specified value. |
lw | public int lw(Code) | | The line width to use
|
MsgPrinter | public MsgPrinter(int linewidth)(Code) | | Creates a new message printer with the specified line width and
with the default locale.
Parameters: linewidth - The line width for which to format (incharacters) |
getLineWidth | public int getLineWidth()(Code) | | Returns the line width that is used for formatting.
The line width used for formatting |
print | public void print(PrintWriter out, int flind, int ind, String msg)(Code) | | Formats the message to print in the current line width, by
breaking the message into lines between words. The number of
spaces to indent the first line is specified by 'flind' and the
number of spaces to indent each of the following lines is
specified by 'ind'. Newlines in 'msg' are respected. A newline is
always printed at the end.
Parameters: out - Where to print the message. Parameters: flind - The indentation for the first line. Parameters: ind - The indentation for the other lines. Parameters: msg - The message to format and print. |
setLineWidth | public void setLineWidth(int linewidth)(Code) | | Sets the line width to the specified value. This new value will
be used in subsequent calls to the print() message.
Parameters: linewidth - The new line width to use (in cahracters) |
|
|