Using EL references bindings declaratively in ADF should always be followed, but there always is room for you to argument your application behavior in your own code. Here I am summarizing to access page bindings programmatically. How to access Page Definitions/Binding Context/Binding Container? BindingContainer bc = BindingContext.getCurrent().getCurrentBindingsEntry(); How to access page bindings in the page definition? There are different types of bindings: attributeBinding, treeBinding, listBinding, actionBinding, methodBinding, etc The corresponding types of codings have only two types: controlBinding and operationBinding. It's easy to recognize here. ActionBinding and methodBinding reference some actions and custom methods which are supposed to be executed somehow, therefore goes into the type of OperationBinding because it has execute() function. Other bindings are belonging to the valueBinding type so controlBinding is used. The codings are: OperationBind...
To attain knowledge, add things everyday. To attain wisdom, remove things every day.