Package org.apache.commons.jexl
Interface Script
- All Superinterfaces:
org.apache.commons.jexl2.Script
Jexl-1.x compatible script.
- Since:
- 2.0
- Version:
- $Id$
-
Method Summary
Modifier and TypeMethodDescriptionexecute
(JexlContext context) Executes the script with the variables contained in the suppliedJexlContext
.Methods inherited from interface org.apache.commons.jexl2.Script
callable, callable, execute, execute, getLocalVariables, getParameters, getText, getVariables
-
Method Details
-
execute
Executes the script with the variables contained in the suppliedJexlContext
.- Parameters:
context
- A JexlContext containing variables.- Returns:
- The result of this script, usually the result of the last statement.
- Throws:
Exception
- on any script parse or execution error.
-