Search in sources :

Example 1 with Factorial

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;
}
Also used : Factorial(org.whole.lang.math.model.Factorial) IEntity(org.whole.lang.model.IEntity) ArrayList(java.util.ArrayList)

Aggregations

ArrayList (java.util.ArrayList)1 Factorial (org.whole.lang.math.model.Factorial)1 IEntity (org.whole.lang.model.IEntity)1