|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--jj2000.j2k.util.MsgPrinter
This utility class formats messages to the specified line width, by inserting line-breaks between words, and printing the resulting lines.
Field Summary | |
private static int |
IS_EOS
Signals that the end-of-string was reached |
private static int |
IS_NEWLINE
Signals that a newline was found |
int |
lw
The line width to use |
Constructor Summary | |
MsgPrinter(int linewidth)
Creates a new message printer with the specified line width and with the default locale. |
Method Summary | |
int |
getLineWidth()
Returns the line width that is used for formatting. |
private int |
nextLineEnd(java.lang.String str,
int from)
Returns the index of the last character of the next word, plus 1, or IS_NEWLINE if a newline character is encountered before the next word, or IS_EOS if the end of the string is ecnounterd before the next word. |
private int |
nextWord(java.lang.String str,
int from)
Returns the position of the first character in the next word, starting from 'from', if a newline is encountered first then the index of the newline character plus 1 is returned. |
void |
print(java.io.PrintWriter out,
int flind,
int ind,
java.lang.String msg)
Formats the message to print in the current line width, by breaking the message into lines between words. |
void |
setLineWidth(int linewidth)
Sets the line width to the specified value. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public int lw
private static final int IS_NEWLINE
private static final int IS_EOS
Constructor Detail |
public MsgPrinter(int linewidth)
linewidth
- The line width for which to format (in
characters)Method Detail |
public int getLineWidth()
public void setLineWidth(int linewidth)
linewidth
- The new line width to use (in cahracters)public void print(java.io.PrintWriter out, int flind, int ind, java.lang.String msg)
out
- Where to print the message.flind
- The indentation for the first line.ind
- The indentation for the other lines.msg
- The message to format and print.private int nextLineEnd(java.lang.String str, int from)
Non-whitespace characters are defined as in the Character.isWhitespace method (that method is used).
str
- The string to parsefrom
- The index of the first position to search from
private int nextWord(java.lang.String str, int from)
Non-whitespace characters are defined as in the Character.isWhitespace method (that method is used).
str
- The string to parsefrom
- The index where to start parsing
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |