Interface ISpellEngineFactory
-
- All Known Implementing Classes:
SpellEngineFactory
public interface ISpellEngineFactory
Interface description of the speller engine factory. Use this factory to create an instance of a spell engine.- Since:
- 6.0
- Author:
- Jon van Leuven
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISpellEngine
create(ISpellEngineDS datasource)
Create an instance of a spell engine based on a datasource.
-
-
-
Method Detail
-
create
ISpellEngine create(ISpellEngineDS datasource) throws InitializationException
Create an instance of a spell engine based on a datasource.- Parameters:
datasource
- The datasource used for initialization/- Returns:
- The created spell engine (never null)
- Throws:
InitializationException
- Is thrown when the speller engine could not be created.
-
-