use of org.whole.lang.workflows.model.Parse in project whole by wholeplatform.
the class ParsePart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Parse entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(5);
children.add(entity.getLabel());
children.add(entity.getModel());
children.add(entity.getText());
children.add(entity.getGrammar());
children.add(entity.getNt());
return children;
}