Package com.iizix
Interface IPrintAdapter
-
- All Known Implementing Classes:
ClientBuilder
public interface IPrintAdapter
Very small print output redirector.- Author:
- Christopher Mindus
-
-
Field Summary
Fields Modifier and Type Field Description static IPrintAdapter
DEFAULT
The default print adapter that outputs to System.out.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
print(java.lang.String s)
Prints without new line.void
println()
Performs a new line.void
println(java.lang.String s)
Prints without new line.
-
-
-
Field Detail
-
DEFAULT
static final IPrintAdapter DEFAULT
The default print adapter that outputs to System.out.
-
-