| java.lang.Object javax.el.FunctionMapper
FunctionMapper | abstract public class FunctionMapper (Code) | | The interface to a map between EL function names and methods.
A FunctionMapper maps ${prefix:name()}
style functions to a static method that can execute that function.
since: JSP 2.1 |
Method Summary | |
abstract public java.lang.reflect.Method | resolveFunction(String prefix, String localName) Resolves the specified prefix and local name into a
java.lang.Method .
Returns null if no function could be found that matches
the given prefix and local name.
Parameters: prefix - the prefix of the function, or "" if no prefix.For example, "fn" in ${fn:method()} , or"" in ${method()} . Parameters: localName - the short name of the function. |
resolveFunction | abstract public java.lang.reflect.Method resolveFunction(String prefix, String localName)(Code) | | Resolves the specified prefix and local name into a
java.lang.Method .
Returns null if no function could be found that matches
the given prefix and local name.
Parameters: prefix - the prefix of the function, or "" if no prefix.For example, "fn" in ${fn:method()} , or"" in ${method()} . Parameters: localName - the short name of the function. For example,"method" in ${fn:method()} . the static method to invoke, or null if nomatch was found. |
|
|