Author: vrubezhny
Date: 2008-11-28 12:11:00 -0500 (Fri, 28 Nov 2008)
New Revision: 12134
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamELCompletionEngine.java
Log:
JBIDE-1975 OpenOn for #{messages.***} in Seam EL.
The getScope() and resolveVariables() methods are made public
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamELCompletionEngine.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamELCompletionEngine.java 2008-11-28
17:06:49 UTC (rev 12133)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/el/SeamELCompletionEngine.java 2008-11-28
17:11:00 UTC (rev 12134)
@@ -570,7 +570,7 @@
* @param resource
* @return
*/
- private ScopeType getScope(ISeamProject project, IResource resource) {
+ public static ScopeType getScope(ISeamProject project, IResource resource) {
if (project == null || resource == null)
return null;
@@ -586,7 +586,7 @@
return null;
}
- private List<ISeamContextVariable> resolveVariables(ScopeType scope,
ELInvocationExpression expr, boolean isFinal, boolean onlyEqualNames) {
+ public List<ISeamContextVariable> resolveVariables(ScopeType scope,
ELInvocationExpression expr, boolean isFinal, boolean onlyEqualNames) {
List<ISeamContextVariable>resolvedVars = new
ArrayList<ISeamContextVariable>();
String varName = expr.toString();
if (varName != null) {
Show replies by date