Search for EL references for Open Call Hierarchy action
-------------------------------------------------------
Key: JBIDE-10610
URL:
https://issues.jboss.org/browse/JBIDE-10610
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: common/jst/core
Reporter: Alexey Kazakov
Assignee: Daniel Azarov
Fix For: 3.4.x
Create a CDI project.
Create the following class:
{code}
@Named("testFishBean")
public class Fish {
public int getFoo1() {
return 0;
}
public int foo23() {
return 1;
}
}
{code}
And an XHTML with the following ELs:
{code}
#{testFishBean.foo1 + testFishBean.foo23()}
{code}
Try to Ctrl+Alt+H on the getFoo1() or foo23() methods.
It would be nice if #{testFishBean.foo1 + testFishBean.foo23()} were found along with the
corresponding java calls.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira