# Print output for @column tags ?>
public
class
PrintStreamPrinter
extends Object
implements
Printer
| java.lang.Object | |
| ↳ | android.util.PrintStreamPrinter |
Implementation of a Printer that sends its output
to a PrintStream.
Public constructors | |
|---|---|
PrintStreamPrinter(PrintStream pw)
Create a new Printer that sends to a PrintWriter object. |
|
Public methods | |
|---|---|
void
|
println(String x)
Write a line of text to the output. |
Inherited methods | |
|---|---|
public PrintStreamPrinter (PrintStream pw)
Create a new Printer that sends to a PrintWriter object.
| Parameters | |
|---|---|
pw |
PrintStream: The PrintWriter where you would like output to go. |
public void println (String x)
Write a line of text to the output. There is no need to terminate the given string with a newline.
| Parameters | |
|---|---|
x |
String |