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