Creates
Script s. To create a JEXL Script, pass
valid JEXL syntax to the static createScript() method:
String jexl = "y = x * 12 + 44; y = y * 4;";
Script script = ScriptFactory.createScript( jexl );
When an
Script is created, the JEXL syntax is
parsed and verified.
since: 1.1 version: $Id: ScriptFactory.java 429175 2006-08-06 19:05:23Z rahul $ |