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