getBindings() not Found Error? - ITgnan

All Web Technologies Concepts

Thursday 10 October 2013

getBindings() not Found Error?

To have Bindings in your backing bean, we have to import Binding Container & Binding Context in to the java class.

IMPORT STATEMENTS
import oracle.adf.model.BindingContext;
import oracle.binding.BindingContainer;

Code you have to add in your class is:-
public BindingContainer getBindings()
{
return BindingContext.getCurrent.getCurrentBindingEntry();
}

1 comment:

  1. there's a small error:

    it's -

    public BindingContainer getBindings(){
    return BindingContext.getCurrent().getCurrentBindingsEntry();
    }

    ReplyDelete