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