Search in sources :

Example 1 with DerivationPoint

use of org.whole.lang.patterns.model.DerivationPoint in project whole by wholeplatform.

the class DerivationPointPart method getModelSpecificChildren.

protected List<IEntity> getModelSpecificChildren() {
    DerivationPoint entity = getModelEntity();
    List<IEntity> children = new ArrayList<IEntity>(2);
    children.add(entity.getResultType());
    children.add(entity.getExpression());
    return children;
}
Also used : IEntity(org.whole.lang.model.IEntity) DerivationPoint(org.whole.lang.patterns.model.DerivationPoint) ArrayList(java.util.ArrayList)

Aggregations

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