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