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