Archive for June, 2009
Unified EL: Method calls using parameters
What Seam (and its Extended EL) could do a long time ago standard EL can do now, too: calling methods with parameters. Assuming you have the following bean:
public class MyBean {
public String sayHello(final String name){
return "Hello " + name;
}
}
Recent Comments