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