Package org.daisy.dotify.api.obfl
Class ExpressionFactoryMaker
- java.lang.Object
-
- org.daisy.dotify.api.obfl.ExpressionFactoryMaker
-
public class ExpressionFactoryMaker extends Object
Like all maker classes in the api, this class is only used directly in SPI context. Unlike some other classes however, this class does not implement a service interface that can be used from OSGi. The reason for this is that the implementation simply returns a single instance of the lower level interface with references populated with SPI. To use in OSGi context, request the lower level service directly from the DS registry.
-
-
Constructor Summary
Constructors Constructor Description ExpressionFactoryMaker()
Creates a new expression factory maker
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ExpressionFactory
getFactory()
Gets an expression factory.static ExpressionFactoryMaker
newInstance()
Creates a new expression factory maker instance
-
-
-
Method Detail
-
newInstance
public static ExpressionFactoryMaker newInstance()
Creates a new expression factory maker instance- Returns:
- returns a new expression factory maker instance
-
getFactory
public ExpressionFactory getFactory()
Gets an expression factory.- Returns:
- returns an expression factory
-
-