use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class RuleNamePart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
RuleName entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(3);
list.add(entity.getName());
list.add(entity.getSub());
list.add(entity.getSup());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class SequenceTypePart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
SequenceType entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getSignature());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class InvokeOperationPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
InvokeOperation entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(4);
children.add(entity.getLabel());
children.add(entity.getModel());
children.add(entity.getOperation());
children.add(entity.getBindings());
return children;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class LoadArtifactsPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
LoadArtifacts entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(7);
children.add(entity.getLabel());
children.add(entity.getModel());
children.add(entity.getRootResourceKind());
children.add(entity.getRootResource());
children.add(entity.getTraversalStrategy());
children.add(entity.getSynchronizeStrategy());
children.add(entity.getDefaultPersistence());
return children;
}
use of org.whole.lang.model.IEntity 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;
}
Aggregations