
eu.interedition.text.TextRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-core Show documentation
Show all versions of text-core Show documentation
Stand-off Markup/Annotation Text Model
The newest version!
package eu.interedition.text;
import java.io.IOException;
import java.io.Reader;
import java.util.Set;
/**
* @author Gregor Middell
*/
public interface TextRepository {
Layer findByIdentifier(long id);
QueryResult query(Query query);
Layer add(Name name, Reader text, T data, Set> anchors) throws IOException;
Layer add(Name name, Reader text, T data, Anchor anchor) throws IOException;
void delete(Iterable> layers);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy