javax.servlet.jsp.el
Interface FunctionMapper
public interface FunctionMapper
The 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.
java.lang.reflect.Method | resolveFunction(String prefix, String localName) - Resolves the specified local name and prefix into a Java.lang.Method.
|
resolveFunction
public java.lang.reflect.Method resolveFunction(String prefix,
String localName)
Resolves the specified local name and prefix into a Java.lang.Method.
Returns null if the prefix and local name are not found.
prefix
- the prefix of the function, or "" if no prefix.localName
- the short name of the function
- the result of the method mapping. Null means no entry found.
Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.