Searched defs:left_justify (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java1083 * @param left_justify format left or right
1087 public static final String format(int i, int length, boolean left_justify, char fill) { argument
1088 return fillup(Integer.toString(i), length, left_justify, fill);
1096 * @param left_justify format left or right
1100 public static final String fillup(String str, int length, boolean left_justify, char fill) { argument
1107 if(left_justify)

Completed in 39 milliseconds