Resolves a function reference to its corresponding static java.lang.reflect.Method. @param prefix the namespace prefix of the function @param localName the local name of the function @return the Method object for the resolved function, or null if not found
(String prefix, String localName)
| 45 | * @return the {@link Method} object for the resolved function, or {@code null} if not found |
| 46 | */ |
| 47 | public abstract Method resolveFunction(String prefix, String localName); |
| 48 | |
| 49 | /** |
| 50 | * Map a method to a function name. |