Only in jeltest/: JelTest.class diff -c jeltest.orig/JelTest.java jeltest/JelTest.java *** jeltest.orig/JelTest.java Thu Aug 15 19:35:12 2002 --- jeltest/JelTest.java Mon Aug 12 18:03:29 2002 *************** *** 34,40 **** //String expr = "\"abc\".length()==3"; ! String expr = "variables.getIsValid()==true"; CompiledExpression expr_c=null; try { expr_c=Evaluator.compile(expr,lib); --- 34,41 ---- //String expr = "\"abc\".length()==3"; ! String expr = "isValid()==true"; ! // String expr = "variables.getIsValid()==true"; CompiledExpression expr_c=null; try { expr_c=Evaluator.compile(expr,lib); *************** *** 68,74 **** // Evaluate (Can do it now any number of times FAST !!!) Boolean result=null; try { ! result=(Boolean)expr_c.evaluate(null); } catch (Throwable e) { System.err.println("Exception emerged from JEL compiled"+ " code (IT'S OK) :"); --- 69,75 ---- // Evaluate (Can do it now any number of times FAST !!!) Boolean result=null; try { ! result=(Boolean)expr_c.evaluate(context); } catch (Throwable e) { System.err.println("Exception emerged from JEL compiled"+ " code (IT'S OK) :"); Only in jeltest/: PTFResult.class