Interface MUiFactory
-
public interface MUiFactoryThe Factory for the model. It provides a create method for each non-abstract class of the model.
-
-
Field Summary
Fields Modifier and Type Field Description static MUiFactoryINSTANCEThe singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MCoreExpressioncreateCoreExpression()Returns a new object of class 'Core Expression'.MImperativeExpressioncreateImperativeExpression()Returns a new object of class 'Imperative Expression'.
-
-
-
Field Detail
-
INSTANCE
static final MUiFactory INSTANCE
The singleton instance of the factory.
-
-
Method Detail
-
createCoreExpression
MCoreExpression createCoreExpression()
Returns a new object of class 'Core Expression'.- Returns:
- a new object of class 'Core Expression'.
- Since:
- 1.0
-
createImperativeExpression
MImperativeExpression createImperativeExpression()
Returns a new object of class 'Imperative Expression'.- Returns:
- a new object of class 'Imperative Expression'.
-
-