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;
}
Aggregations