#676: extended logging for text import, imorpt logic moved to separated class, allow to ignore errors duting import

This commit is contained in:
honfika@gmail.com
2014-11-23 22:54:19 +01:00
parent abb3ec9dc7
commit 1cf0c28c74
61 changed files with 573 additions and 472 deletions

View File

@@ -31,17 +31,14 @@ public interface Searchable {
* @param data
* @return Map Position=>Input stream
*/
public Map<Long, InputStream> search(byte[]
... data);
public Map<Long, InputStream> search(byte[]... data);
/**
* Searches for byte sequences with progress listener
*
* @param progListener Listener
* @param data
* @return Map Position=>Input stream
*/
public Map<Long, InputStream> search(ProgressListener progListener, byte[]
... data);
public Map<Long, InputStream> search(ProgressListener progListener, byte[]... data);
}