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