Search in sources :

Example 1 with VariablePoint

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

Aggregations

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