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