Interface OutputShim
- 
- All Known Implementing Classes:
- ShadedOutputAdapter
 
 public interface OutputShimA minimalOutput-like abstraction. See that class for method documentation.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidflush()voidwriteBoolean(boolean b)voidwriteByte(byte b)voidwriteBytes(byte[] array, int offset, int count)voidwriteDouble(double d)voidwriteInt(int i)voidwriteLong(long l)voidwriteShort(int s)voidwriteString(String s)
 
- 
- 
- 
Method Detail- 
writeBytevoid writeByte(byte b) 
 - 
writeBytesvoid writeBytes(byte[] array, int offset, int count)
 - 
writeStringvoid writeString(String s) 
 - 
writeLongvoid writeLong(long l) 
 - 
writeIntvoid writeInt(int i) 
 - 
writeDoublevoid writeDouble(double d) 
 - 
writeShortvoid writeShort(int s) 
 - 
writeBooleanvoid writeBoolean(boolean b) 
 - 
flushvoid flush() 
 
- 
 
-