Home | History | Annotate | Download | only in util

Lines Matching refs:width

24  * Writer that wraps another writer and passes width-limited and
33 /** {@code > 0;} the maximum output width */
34 private final int width;
52 * @param width {@code >= 0;} the maximum output width (not including
56 public IndentingWriter(Writer out, int width, String prefix) {
63 if (width < 0) {
64 throw new IllegalArgumentException("width < 0");
71 this.width = (width != 0) ? width : Integer.MAX_VALUE;
72 this.maxIndent = width >> 1;
82 * @param width {@code >= 0;} the maximum output width (not including
85 public IndentingWriter(Writer out, int width) {
86 this(out, width, "");
105 if ((column == width) && (c != '\n')) {