[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.webtools.jsf] Open Declaration from selection in xhtml

Is there a plan to implement an "Open Declaration" menu that navigates to the Java class associated with an action or value reference in xhtml?

For example, if document contains a command button like this:
<h:commandButton value="Search" action="#{commentSearch.search}" id="commentSearchRequest_searchComments" />


and faces-config.xml contains:
  <managed-bean>
     <managed-bean-name>commentSearch</managed-bean-name>
     <managed-bean-class>
        mycompany.CommentSearchBean
     </managed-bean-class>
   </managed-bean>

It would be nice to be able to go directly to the Java code at mycompany.CommentSearchBean.search() by placing the cursor in the #{commentSearch.search} portion of the xhtml document, and selecting an Open Declaration menu.