Class InitializationLookup
- java.lang.Object
-
- com.aquima.interactions.dtree.impl.InitializationLookup
-
public class InitializationLookup extends Object
Utility class that combines various resources needed during initialization.- Since:
- 5.0
- Author:
- F. van der Meer
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
InitializationLookup(IParserFactory parser, IMetaModel metamodel, IComposer composer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IComposer
getComposer()
This method returns the composer of the current application.IMetaModel
getMetaModel()
This method returns the meta model definition of the current application.IParserFactory
getParserFactory()
This method returns the parser factory that should be used to acquire a parser.
-
-
-
Constructor Detail
-
InitializationLookup
protected InitializationLookup(IParserFactory parser, IMetaModel metamodel, IComposer composer)
-
-
Method Detail
-
getParserFactory
public IParserFactory getParserFactory()
This method returns the parser factory that should be used to acquire a parser.- Returns:
- The parser factory that should be used to acquire a parser.
-
getMetaModel
public IMetaModel getMetaModel()
This method returns the meta model definition of the current application.- Returns:
- The meta model definition of the current application.
-
getComposer
public IComposer getComposer()
This method returns the composer of the current application.- Returns:
- The composer of the current application.
-
-