Uploaded image for project: 'Tools (JBoss Tools)'
  1. Tools (JBoss Tools)
  2. JBIDE-10593

Ctrl+Shift+G on a java element doesn't work for complex ELs

XMLWordPrintable

      Create a CDI project.
      Create the following class:

      @Named("testFishBean")
      public class Fish {
      
          public int getFoo1() {
          	return 0;
          }
      
          public int foo23() {
          	return 1;
          }
      }
      

      And an XHTML with the following ELs:

      #{testFishBean.foo1 + testFishBean.foo23()}   <!-- NOT FOUND!!! -->
      #{testFishBean.foo1}                          <!-- FOUND -->
      #{testFishBean.foo23()}                       <!-- FOUND -->
      #{testFishBean.foo23}                         <!-- FOUND -->
      

      Try to Ctrl+Shift+G on the class name and both methods.
      #

      {testFishBean.foo1 + testFishBean.foo23()}

      is not found.

            dazarov_jira Daniel Azarov (Inactive)
            alexeykazakov Alexey Kazakov
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: