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