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