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