JAL-3647 release notes for JAL-1842 JAL-3509 JAL-3881, JAL-3884 JAL-3632 JAL-3633...
[jalview.git] / unused / javajs / api / GenericOutputChannel.java
1 package javajs.api;
2
3 public interface GenericOutputChannel {
4
5   boolean isBigEndian();
6
7   void writeByteAsInt(int b);
8
9   void write(byte[] b, int off, int n);
10
11   void writeInt(int i);
12
13   void reset();
14
15   String closeChannel();
16
17   void writeLong(long b);
18
19   void writeShort(short i);
20
21
22 }