Interface MUiFactory
-
public interface MUiFactory
The 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 MUiFactory
INSTANCE
The singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MCoreExpression
createCoreExpression()
Returns a new object of class 'Core Expression'.MImperativeExpression
createImperativeExpression()
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'.
-
-