Home | History | Annotate | Download | only in util

Lines Matching refs:wr

119      * Constructs a new {@code PrintWriter} with {@code wr} as its target
127 * @param wr
130 * if {@code wr} is {@code null}.
132 public FastPrintWriter(Writer wr) {
133 this(wr, false, 8192);
137 * Constructs a new {@code PrintWriter} with {@code wr} as its target
142 * @param wr
150 public FastPrintWriter(Writer wr, boolean autoFlush) {
151 this(wr, autoFlush, 8192);
155 * Constructs a new {@code PrintWriter} with {@code wr} as its target
160 * @param wr
169 * if {@code wr} is {@code null}.
171 public FastPrintWriter(Writer wr, boolean autoFlush, int bufferLen) {
173 if (wr == null) {
174 throw new NullPointerException("wr is null");
180 mWriter = wr;