de.regnis.q.sequence.line.QSequenceLineCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javasvn Show documentation
Show all versions of javasvn Show documentation
The only pure Java Subversion library in the world
package de.regnis.q.sequence.line;
import java.io.*;
/**
* @author Marc Strapetz
*/
public interface QSequenceLineCache {
int getLineCount();
void addLine(QSequenceLine line) throws IOException;
QSequenceLine getLine(int index) throws IOException;
int getLineHash(int index) throws IOException;
void close() throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy