Search in sources :

Example 1 with InvokeOperation

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

Aggregations

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