added a reset() method as part of resolution for issue #173

Former-commit-id: b07e6a477ebd1b008f9be6f249a531fcb911865a
This commit is contained in:
Jeremy Long
2014-12-26 07:06:16 -05:00
parent e676e3a14b
commit 573c8eb509

View File

@@ -31,4 +31,9 @@ public interface FileTypeAnalyzer extends Analyzer {
* @return whether or not the specified file extension is supported by this analyzer.
*/
boolean supportsExtension(String extension);
/**
* Resets the analyzers state.
*/
void reset();
}