PrintStreamPrinterpublic class PrintStreamPrinter extends Object implements PrinterImplementation 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.
mPS = pw;
|
|