[
https://issues.jboss.org/browse/JBIDE-10593?page=com.atlassian.jira.plugi...
]
Alexey Kazakov commented on JBIDE-10593:
----------------------------------------
{code}
java.lang.NullPointerException
at
org.jboss.tools.jst.web.kb.refactoring.RefactorSearcher.resolveByResolvers(RefactorSearcher.java:274)
at
org.jboss.tools.jst.web.kb.refactoring.RefactorSearcher.searchInCach(RefactorSearcher.java:311)
at
org.jboss.tools.jst.web.kb.refactoring.RefactorSearcher.scanForJava(RefactorSearcher.java:242)
at
org.jboss.tools.jst.web.kb.refactoring.RefactorSearcher.scanForJava(RefactorSearcher.java:177)
at
org.jboss.tools.jst.web.kb.refactoring.RefactorSearcher.scanForJava(RefactorSearcher.java:174)
at
org.jboss.tools.jst.web.kb.refactoring.RefactorSearcher.scanProject(RefactorSearcher.java:108)
at
org.jboss.tools.jst.web.kb.refactoring.RefactorSearcher.scanProject(RefactorSearcher.java:94)
at
org.jboss.tools.jst.web.kb.refactoring.RefactorSearcher.findELReferences(RefactorSearcher.java:147)
at
org.jboss.tools.jst.web.kb.refactoring.ELReferencesQueryParticipant.search(ELReferencesQueryParticipant.java:59)
at org.eclipse.jdt.internal.ui.search.JavaSearchQuery$2.run(JavaSearchQuery.java:164)
at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
at org.eclipse.jdt.internal.ui.search.JavaSearchQuery.run(JavaSearchQuery.java:170)
at
org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:91)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
{code}
Ctrl+Shift+G on a java element doesn't work for complex ELs
-----------------------------------------------------------
Key: JBIDE-10593
URL:
https://issues.jboss.org/browse/JBIDE-10593
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: common/jst/core, jsp/jsf/xml source editing
Affects Versions: 3.3.0.Beta1
Reporter: Alexey Kazakov
Assignee: Alexey Kazakov
Fix For: 3.3.0.Beta1
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()} <!-- NOT FOUND!!! -->
#{testFishBean.foo1} <!-- FOUND -->
#{testFishBean.foo23()} <!-- FOUND -->
#{testFishBean.foo23} <!-- FOUND -->
{code}
Try to Ctrl+Shift+G on the class name and both methods.
#{testFishBean.foo1 + testFishBean.foo23()} is not found.
--
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