use of org.whole.lang.grammars.model.Not in project whole by wholeplatform.
the class NotPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Not entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getPredicate());
return list;
}