Begin versioning.
[fits.git] / src / nom / tam / util / DataIO.java
1 package nom.tam.util;
2
3 import java.io.DataInput;
4 import java.io.DataOutput;
5
6 /** This interface combines the DataInput, DataOutput and
7  *  RandomAccess interfaces to provide a reference type
8  *  which can be used to build BufferedFile in a fashion
9  *  that accommodates both the RandomAccessFile and ByteBuffers
10  */
11 public interface DataIO extends DataInput, DataOutput, RandomAccess {
12 }