use of org.whole.lang.workflows.model.InvokeOperation 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;
}
Aggregations