Author: vrubezhny
Date: 2007-08-08 12:17:00 -0400 (Wed, 08 Aug 2007)
New Revision: 2969
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamExpressionResolver.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-670 xhtml code completion does not update it's
list of completions
Seam scope usage is fixed
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamExpressionResolver.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamExpressionResolver.java 2007-08-08
16:07:09 UTC (rev 2968)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamExpressionResolver.java 2007-08-08
16:17:00 UTC (rev 2969)
@@ -93,7 +93,7 @@
*/
private static List<ISeamContextVariable>
internalResolveVariablesByScope(ISeamProject project, ScopeType scope, String name,
boolean onlyEqualNames) {
List<ISeamContextVariable> resolvedVariables = new
ArrayList<ISeamContextVariable>();
- Set<ISeamContextVariable> variables = project.getVariablesByScope(scope);
+ Set<ISeamContextVariable> variables = project.getVariablesByScope(scope, true);
for (ISeamContextVariable variable : variables) {
if(onlyEqualNames) {
if (variable.getName().equals(name)) {