(byte[] b)
| 12 | |
| 13 | public interface DataOutput { |
| 14 | void write(byte[] b) throws IOException; |
| 15 | void write(byte[] b, int off, int len) throws IOException; |
| 16 | void write(int b) throws IOException; |
| 17 | void writeBoolean(boolean v) throws IOException; |
no outgoing calls