Lines Matching defs:bindings
70 BindingList bindings = OWLSListFactory.createBindingList();
71 return getBindingsRecursively(this, bindings);
74 private BindingList getBindingsRecursively(ControlConstruct cc, BindingList bindings) {
78 // get bindings for flows to this perform
79 bindings.addBindingWithoutDuplicate((BindingList)perform.getBindings());
81 // get bindings for flows going out of this perform
86 bindings.addBindingWithoutDuplicate(valueOf.getEnclosingBinding());
91 bindings = getBindingsRecursively(ccs.next(), bindings);
94 return bindings;