Author: dazarov
Date: 2012-01-06 19:26:17 -0500 (Fri, 06 Jan 2012)
New Revision: 37704
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/projects/tck/WebContent/search.jsp
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/ELReferencesQueryParticipantTest.java
Log:
Ctrl+Shift+G on a java element doesn't work for complex ELs
https://issues.jboss.org/browse/JBIDE-10593
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/projects/tck/WebContent/search.jsp
===================================================================
---
trunk/cdi/tests/org.jboss.tools.cdi.core.test/projects/tck/WebContent/search.jsp 2012-01-06
23:48:12 UTC (rev 37703)
+++
trunk/cdi/tests/org.jboss.tools.cdi.core.test/projects/tck/WebContent/search.jsp 2012-01-07
00:26:17 UTC (rev 37704)
@@ -10,6 +10,7 @@
<h:outputText value="#{mySearchableBean.sFoo2()}"/>
<h:outputText value="#{sFoo}"/>
<h:outputText value="#{sFoo1}"/>
+ <h:outputText value="#{sFoo + mySearchableBean.sFoo2()}"/>
</h1>
</f:view>
</body>
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/ELReferencesQueryParticipantTest.java
===================================================================
---
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/ELReferencesQueryParticipantTest.java 2012-01-06
23:48:12 UTC (rev 37703)
+++
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/ELReferencesQueryParticipantTest.java 2012-01-07
00:26:17 UTC (rev 37704)
@@ -76,6 +76,7 @@
ArrayList<MatchStructure> matches = new ArrayList<MatchStructure>();
matches.add(new MatchStructure("/tck/WebContent/search.jsp",
"mySearchableBean"));
+ matches.add(new MatchStructure("/tck/WebContent/search.jsp",
"mySearchableBean"));
QueryParticipantTestUtils.testSearchParticipant(tckProject,
"JavaSource/org/jboss/jsr299/tck/tests/jbt/search/MySearchableBean.java",
@@ -104,6 +105,7 @@
ArrayList<MatchStructure> matches = new ArrayList<MatchStructure>();
matches.add(new MatchStructure("/tck/WebContent/search.jsp",
"sFoo"));
+ matches.add(new MatchStructure("/tck/WebContent/search.jsp",
"sFoo"));
QueryParticipantTestUtils.testSearchParticipant(tckProject,
"JavaSource/org/jboss/jsr299/tck/tests/jbt/search/MySearchableBean.java",