Package android.util
Interface Printer
-
- All Known Implementing Classes:
PrefixPrinter
public interface PrinterSimple interface for printing text, allowing redirection to various targets. Standard implementations areandroid.util.LogPrinter,android.util.StringBuilderPrinter, andandroid.util.PrintWriterPrinter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprintln(String x)Write a line of text to the output.
-
-
-
Method Detail
-
println
void println(String x)
Write a line of text to the output. There is no need to terminate the given string with a newline.
-
-