Interface ParserModuleManager
-
- All Known Implementing Classes:
DefaultParserModuleManager
public interface ParserModuleManager
Handles ParserModule lookups.- Since:
- 1.6
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParserModule
getParserModule(java.lang.String id)
Returns the ParserModule that corresponds to the given id.java.util.Collection<ParserModule>
getParserModules()
Returns a collection of ParserModules.
-
-
-
Method Detail
-
getParserModules
java.util.Collection<ParserModule> getParserModules()
Returns a collection of ParserModules.- Returns:
- The ParserModules.
-
getParserModule
ParserModule getParserModule(java.lang.String id) throws ParserModuleNotFoundException
Returns the ParserModule that corresponds to the given id.- Parameters:
id
- The identifier.- Returns:
- The corresponding ParserModule.
- Throws:
ParserModuleNotFoundException
- if no ParserModule could be found for the given id.
-
-