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