Package javax.servlet.jsp.el
Interface FunctionMapper
- 
 public interface FunctionMapperDeprecated.As of JSP 2.1, replaced by javax.el.FunctionMapperThe interface to a map between EL function names and methods. Classes implementing this interface may, for instance, consult tag library information to resolve the map. - Since:
- JSP 2.0
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.reflect.MethodresolveFunction(java.lang.String prefix, java.lang.String localName)Deprecated.Resolves the specified local name and prefix into a Java.lang.Method.
 
- 
- 
- 
Method Detail- 
resolveFunctionjava.lang.reflect.Method resolveFunction(java.lang.String prefix, java.lang.String localName)Deprecated.Resolves the specified local name and prefix into a Java.lang.Method. Returns null if the prefix and local name are not found.- Parameters:
- prefix- the prefix of the function, or "" if no prefix.
- localName- the short name of the function
- Returns:
- the result of the method mapping. Null means no entry found.
 
 
- 
 
-