git://source.jalview.org
/
jalview.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'feature/JAL-3063JAXB' into Jalview-BH/JAL-3026-JAL-3063-JAXB
[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
}