01: package de.regnis.q.sequence.line;
02:
03: import java.io.*;
04:
05: /**
06: * @author Marc Strapetz
07: */
08: public interface QSequenceLineCache {
09: int getLineCount();
10:
11: void addLine(QSequenceLine line) throws IOException;
12:
13: QSequenceLine getLine(int index) throws IOException;
14:
15: int getLineHash(int index) throws IOException;
16:
17: void close() throws IOException;
18: }
|