Interface Script

All Superinterfaces:
org.apache.commons.jexl2.Script

public interface Script extends org.apache.commons.jexl2.Script
Jexl-1.x compatible script.
Since:
2.0
Version:
$Id$
  • Method Summary

    Modifier and Type
    Method
    Description
    Executes the script with the variables contained in the supplied JexlContext.

    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 supplied JexlContext.
      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.