Package javax.el
Class ELProcessor
java.lang.Object
javax.el.ELProcessor
- Since:
 - EL 3.0
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoiddefineBean(String name, Object bean) voiddefineFunction(String prefix, String function, Method method) Map a method to a function name.voiddefineFunction(String prefix, String function, String className, String methodName) voidvoidsetVariable(String variable, String expression)  
- 
Constructor Details
- 
ELProcessor
public ELProcessor() 
 - 
 - 
Method Details
- 
getELManager
 - 
eval
 - 
getValue
 - 
setValue
 - 
setVariable
 - 
defineFunction
public void defineFunction(String prefix, String function, String className, String methodName) throws ClassNotFoundException, NoSuchMethodException  - 
defineFunction
public void defineFunction(String prefix, String function, Method method) throws NoSuchMethodException Map a method to a function name.- Parameters:
 prefix- Function prefixfunction- Function namemethod- Method- Throws:
 NullPointerException- If any of the arguments are nullNoSuchMethodException- If the method is not static
 - 
defineBean
 
 -