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