FileDocCategorySizeDatePackage
PrintWriterPrinter.javaAPI DocAndroid 1.5 API1186Wed May 06 22:41:56 BST 2009android.util

PrintWriterPrinter

public class PrintWriterPrinter extends Object implements Printer
Implementation of a {@link android.util.Printer} that sends its output to a {@link java.io.PrintWriter}.

Fields Summary
private final PrintWriter
mPW
Constructors Summary
public PrintWriterPrinter(PrintWriter pw)
Create a new Printer that sends to a PrintWriter object.

param
pw The PrintWriter where you would like output to go.

        mPW = pw;
    
Methods Summary
public voidprintln(java.lang.String x)

        mPW.println(x);