Is there any way to get the call hierarchy of a JSF bean method including Expression Language calls in eclipse?
I got a simple bean:
@ManagedBean
@ViewScoped
public class MyBean {
public String getHello() {
return "Hello";
}
}
And a simple JSF page:
<h:outputText value="#{myBean.demo}" />
With a CTRL click on #{myBean.demo} eclipse shows the getter.
But the call hierarchy for getHello() does not show the EL call.
Is there a way to see if a getter is used in any JSF page?