01: package de.regnis.q.sequence.line;
02:
03: import java.io.*;
04:
05: /**
06: * @author Marc Strapetz
07: */
08: public interface QSequenceLineRAData {
09:
10: long length() throws IOException;
11:
12: void get(byte[] bytes, long offset, long length) throws IOException;
13:
14: InputStream read(long offset, long length) throws IOException;
15: }
|