[jboss-cvs] jboss-seam/src/main/org/jboss/seam/util ...
Shane Bryzak
Shane_Bryzak at symantec.com
Sat Jan 13 00:36:06 EST 2007
User: sbryzak2
Date: 07/01/13 00:36:06
Modified: src/main/org/jboss/seam/util EL.java
Log:
simple support for Seam EL functions with the unified EL
Revision Changes Path
1.3 +59 -63 jboss-seam/src/main/org/jboss/seam/util/EL.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: EL.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/util/EL.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- EL.java 1 Dec 2006 11:34:01 -0000 1.2
+++ EL.java 13 Jan 2007 05:36:06 -0000 1.3
@@ -1,5 +1,4 @@
package org.jboss.seam.util;
-
import javax.el.BeanELResolver;
import javax.el.CompositeELResolver;
import javax.el.ELContext;
@@ -10,13 +9,10 @@
import javax.el.MapELResolver;
import javax.el.ResourceBundleELResolver;
import javax.el.VariableMapper;
-
+import org.jboss.seam.jsf.SeamELFunctionMapper;
import org.jboss.seam.jsf.SeamELResolver;
-
import com.sun.el.ExpressionFactoryImpl;
-import com.sun.el.lang.FunctionMapperImpl;
import com.sun.el.lang.VariableMapperImpl;
-
public class EL
{
private static final ELResolver EL_RESOLVER = createELResolver();
@@ -48,7 +44,7 @@
@Override
public FunctionMapper getFunctionMapper()
{
- return new FunctionMapperImpl();
+ return new SeamELFunctionMapper();
}
@Override
More information about the jboss-cvs-commits
mailing list