use of org.whole.lang.math.model.Factorial in project whole by wholeplatform.
the class FactorialPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Factorial entity = getModelEntity();
IEntity exp1 = entity.getExpression();
refreshPrecedence(entity, exp1);
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(exp1);
return list;
}