[jbosstools-issues] [JBoss JIRA] (JBIDE-10593) Ctrl+Shift+G on a java element doesn't work for complex ELs

Alexey Kazakov (Created) (JIRA) jira-events at lists.jboss.org
Thu Jan 5 17:31:13 EST 2012


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: jsp/jsf/xml source editing
    Affects Versions: 3.3.0.Beta1
            Reporter: Alexey Kazakov
            Assignee: Daniel Azarov
             Fix For: 3.3.0.Beta1


Create a CDI project.
Create the following class:
{code}
@Named("testFishBean")
public class Fish {

    public String getFoo1() {
    	return "";
    }

    public String foo23() {
    	return "";
    }
}
{code}

And an XHTML with the following ELs:

{code}
#{testFishBean.foo1 + testFishBean.foo23()}   <!-- ARE 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

        


More information about the jbosstools-issues mailing list