Search in sources :

Example 1 with Parse

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;
}
Also used : IEntity(org.whole.lang.model.IEntity) Parse(org.whole.lang.workflows.model.Parse) ArrayList(java.util.ArrayList)

Aggregations

ArrayList (java.util.ArrayList)1 IEntity (org.whole.lang.model.IEntity)1 Parse (org.whole.lang.workflows.model.Parse)1