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

PrintStreamPrinter

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

Fields Summary
private final PrintStream
mPS
Constructors Summary
public PrintStreamPrinter(PrintStream pw)
Create a new Printer that sends to a PrintWriter object.

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

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

        mPS.println(x);