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(String id)
Returns the ParserModule that corresponds to the given id.Collection<ParserModule>
getParserModules()
Returns a collection of ParserModules.
-
-
-
Method Detail
-
getParserModules
Collection<ParserModule> getParserModules()
Returns a collection of ParserModules.- Returns:
- The ParserModules.
-
getParserModule
ParserModule getParserModule(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.
-
-