Home | History | Annotate | Download | only in utils

Lines Matching full:printwriter

24 import java.io.PrintWriter;
44 PrintWriter m_pw;
56 public DefaultErrorHandler(PrintWriter pw)
66 m_pw = new PrintWriter(pw, true);
82 // Defer creation of a PrintWriter until it's actually needed
87 * Retrieve <code>java.io.PrintWriter</code> to which errors are being
89 * @return The <code>PrintWriter</code> installed via the constructor
90 * or the default <code>PrintWriter</code>
92 public PrintWriter getErrorWriter() {
93 // Defer creating the java.io.PrintWriter until an error needs to be
96 m_pw = new PrintWriter(System.err, true);
119 PrintWriter pw = getErrorWriter();
200 PrintWriter pw = getErrorWriter();
236 PrintWriter pw = getErrorWriter();
271 PrintWriter pw = getErrorWriter();
312 printLocation(new PrintWriter(pw), exception);
317 printLocation(new PrintWriter(pw), exception);
320 public static void printLocation(PrintWriter pw, Throwable exception)