Bug in JSF maybe
Hi I am using MyFaces 1.1.3 and i noticed the following strange behaviour.
I have the following code:
class Bean extends HashTable<String,Element> {
}
class Bean2 extends Bean {
private String hello = "hello";
public String getHello() {
return hello;
}
}
now in the jsp page I use the following line:
<h:outputText value=""#{mappedBean.text}"
So the strange thing is that this binding diplay nothing!
If I remove the extend to HashTable everything is allright and on the screen is displayed "hello" but when it extends it for some reason it does not display anything. I think it is a bug.>

