73649d7692755594b8ecde45576a09abacaf0c37
[jalview.git] / srcjar / 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 }