Hey,
I'm trying to implement an EL Function Mapper described in this
(http://wiki.apache.org/myfaces/Parameters_In_EL_Functions) tutorial. I
changed javax.servlet.jsp.el.FunctionMapper to javax.el.FunctionMapper
because it was deprecated. Now i'm faced with the value binding
implementation
public class MyValueBindingImpl extends
org.apache.myfaces.el.ValueBindingImpl {
static {
// Set up our own function mapper to add support for custom
// functions in JSF expressions, by overriding the member defined in
// the parent class.
s_functionMapper = new MyFunctionMapper();
}
}
I cannot find org.apache.myfaces.el.ValueBindingImpl in the
myfaces-impl(1.2.7).. Is there an alternative?
--
View this message in context:
http://www.nabble.com/org.apache.myfaces.el.ValueBindingImpl-not-in-MyFaces-1.2.7--tp25020456p25020456.html
Sent from the My Faces - Dev mailing list archive at Nabble.com.