Lines Matching defs:PrintWriter

56 public class PrintWriter extends Writer {
60 * <code>PrintWriter</code>.
95 * Creates a new PrintWriter, without automatic line flushing.
99 public PrintWriter (Writer out) {
104 * Creates a new PrintWriter.
111 public PrintWriter(Writer out,
121 * Creates a new PrintWriter, without automatic line flushing, from an
130 public PrintWriter(OutputStream out) {
135 * Creates a new PrintWriter from an existing OutputStream. This
147 public PrintWriter(OutputStream out, boolean autoFlush) {
157 * Creates a new PrintWriter, without automatic line flushing, with the
183 public PrintWriter(String fileName) throws FileNotFoundException {
189 private PrintWriter(Charset charset, File file)
197 * Creates a new PrintWriter, without automatic line flushing, with the
229 public PrintWriter(String fileName, String csn)
236 * Creates a new PrintWriter, without automatic line flushing, with the
262 public PrintWriter(File file) throws FileNotFoundException {
268 * Creates a new PrintWriter, without automatic line flushing, with the
300 public PrintWriter(File file, String csn)
359 if (out instanceof java.io.PrintWriter) {
360 PrintWriter pw = (PrintWriter) out;
803 public PrintWriter printf(String format, Object ... args) {
854 public PrintWriter printf(Locale l, String format, Object ... args) {
898 public PrintWriter format(String format, Object ... args) {
958 public PrintWriter format(Locale l, String format, Object ... args) {
1000 public PrintWriter append(CharSequence csq) {
1040 public PrintWriter append(CharSequence csq, int start, int end) {
1062 public PrintWriter append(char c) {