Hi,
as I’m not using any JSF navigation rules in my application I would like to use action methods which have no return value.
e.g.:
JSF code:
<ice:commandLink value="Do something" action="#{bean.OnAction}"/>
bean code:
...
public void OnAction()
{
do something...
}
...
Everything works fine with that code (I can run it on the server and it works). But the MyEclipse Visual JSF Designer says that the #{bean.OnAction} section is wrong.
Error Text:
Method must have signature “String method()” but has signature “void method()”.
Can I somehow configure MyEclipse so that it ignores that ‘error’ and doesn’t mark it as such?
Regards
Humppa!