hi all. i'm using jsf1.2 The xhtml as followings:
<h:commandLink label="Open" action="#{surveySubFmTreeViListWeb.dtw.updatePage}">
then the backing bean looks like:
public class SurveySubFmTreeViListWeb
{
.....
private DataTableWeb<Entity> dtw = new DataTableWeb<Entity>(Entity.class) {
@Override
public void updatePage() throws Exception
{...snip...}
};
}
if i override the public method of Class DataTableWeb which is the nested class of backing bean. i will get the following exceptions as:
java.lang.IllegalAccessException: Class org.apache.el.parser.AstValue can not access a member of class com.ss.survey.web.SurveySubFmTreeViListWeb $1 with modifiers "public"
however,if access the public method didn't be override in the backing bean ,it will work out ok.if anyone can help me figure it out ? Any help is appreciated.