I've a JSF page that contains the following code:
...
<f:event type="preRenderView" listener="#{page1.PreRenderViewEvent}"/>
...
Now I need to register the listener (Page1.PreRenderViewEvent method) NOT in the page but within the Page1 class constructor ... Something like:
...
UIViewRoot root = FacesContext.getCurrentInstance().getViewRoot();
root.getListenersForEventClass(javax.faces.event.PreRenderViewEvent.class).add ....
...
How I can complete this code ?
Thanks.