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

Alexey Kazakov (Updated) (JIRA) jira-events at lists.jboss.org
Thu Jan 5 17:35:09 EST 2012


     [ https://issues.jboss.org/browse/JBIDE-10593?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Kazakov updated JBIDE-10593:
-----------------------------------

    Description: 
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.

  was:
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()}   <!-- 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.


    
> 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: Daniel Azarov
>             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

        


More information about the jbosstools-issues mailing list