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