Search in sources :

Example 1 with FunctionPoint

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;
}
Also used : IEntity(org.whole.lang.model.IEntity) ArrayList(java.util.ArrayList) FunctionPoint(org.whole.lang.patterns.model.FunctionPoint)

Aggregations

ArrayList (java.util.ArrayList)1 IEntity (org.whole.lang.model.IEntity)1 FunctionPoint (org.whole.lang.patterns.model.FunctionPoint)1