use of org.whole.lang.grammars.model.Or in project whole by wholeplatform.
the class OrPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Or entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getPredicate1());
list.add(entity.getPredicate2());
return list;
}