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