use of org.whole.lang.patterns.model.IterationPoint in project whole by wholeplatform.
the class IterationPointPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
IterationPoint entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(2);
children.add(entity.getTemplate());
children.add(entity.getIterator());
return children;
}
use of org.whole.lang.patterns.model.IterationPoint in project whole by wholeplatform.
the class IterationPointRowPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
IterationPoint entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(2);
children.add(entity.getTemplate());
children.add(entity.getIterator());
return children;
}
Aggregations