use of org.whole.lang.patterns.model.ConditionPoint in project whole by wholeplatform.
the class ConditionPointPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
ConditionPoint entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(2);
children.add(entity.getTemplate());
children.add(entity.getCondition());
return children;
}
use of org.whole.lang.patterns.model.ConditionPoint in project whole by wholeplatform.
the class ConditionPointRowPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
ConditionPoint entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getTemplate());
list.add(entity.getCondition());
return list;
}
Aggregations