Dynamic Method Binding Problem With Final Parameter passing

My problem is How can pass value into dynamic method binding

For Example

In My code I want to call this methods

public void sort(final String column){...}

By Dymanic method binding I had written like this

Class args[ ] = {String.class};

MethodBinding methodBinding = application.createMethodBinding("#{ListHolderBean.sort}",args);

How can I pass value into that .....

Because methods takes final String as parameters.

With Thanks

[491 byte] By [Gunjan-Bohraa] at [2007-11-27 2:25:32]
# 1
Use f:attribute with an actionListener. By the way, for an actionListener methodbinding you have to define ActionEvent as parameter, not String.
BalusCa at 2007-7-12 2:33:58 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

Thanks for reply

Here I am using Action instead of actionListner .....

Ok If I used ActionListner ...I have to pass ActionEvent ....

Now With Action Event I want to pass extra parameter Dynamically

would you please help me that how Can I write dynamic paramater binding with ActionEvent Object

With Thanks

Gunjan-Bohraa at 2007-7-12 2:33:58 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Check http://balusc.xs4all.nl/srv/dev-jep-com.htmlBy the way, sorting datatables is explained here: http://balusc.xs4all.nl/srv/dev-jep-dat.html
BalusCa at 2007-7-12 2:33:58 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
Thanks Problem SolvedGod may bless you
Gunjan-Bohraa at 2007-7-12 2:33:58 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...