You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by he...@apache.org on 2011/11/24 16:12:43 UTC

svn commit: r1205868 - /commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl2/UnifiedJEXL.java

Author: henrib
Date: Thu Nov 24 15:12:42 2011
New Revision: 1205868

URL: http://svn.apache.org/viewvc?rev=1205868&view=rev
Log:
Incorrect silent flag fix in prepare and evaluate;
Javadoc for prepare / evaluate

Modified:
    commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl2/UnifiedJEXL.java

Modified: commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl2/UnifiedJEXL.java
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl2/UnifiedJEXL.java?rev=1205868&r1=1205867&r2=1205868&view=diff
==============================================================================
--- commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl2/UnifiedJEXL.java (original)
+++ commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl2/UnifiedJEXL.java Thu Nov 24 15:12:42 2011
@@ -326,9 +326,12 @@ public final class UnifiedJEXL {
         }
 
         /**
+         * Evaluates the immediate sub-expressions.
+         * <p>
          * When the expression is dependant upon immediate and deferred sub-expressions,
          * evaluates the immediate sub-expressions with the context passed as parameter
          * and returns this expression deferred form.
+         * </p>
          * <p>
          * In effect, this binds the result of the immediate sub-expressions evaluation in the
          * context, allowing to differ evaluation of the remaining (deferred) expression within another context.
@@ -338,12 +341,12 @@ public final class UnifiedJEXL {
          * If the underlying JEXL engine is silent, errors will be logged through its logger as warning.
          * </p>
          * @param context the context to use for immediate expression evaluations
-         * @return  an expression or null if an error occurs and the {@link JexlEngine} is silent
-         * @throws UnifiedJEXL.Exception if an error occurs and the {@link JexlEngine} is not silent
+         * @return an expression or null if an error occurs and the {@link JexlEngine} is running in silent mode
+         * @throws UnifiedJEXL.Exception if an error occurs and the {@link JexlEngine} is not in silent mode
          */
         public final Expression prepare(JexlContext context) {
             try {
-                Interpreter interpreter = new Interpreter(jexl, context, !jexl.isLenient(), false);
+                Interpreter interpreter = new Interpreter(jexl, context, !jexl.isLenient(), jexl.isSilent());
                 if (context instanceof TemplateContext) {
                     interpreter.setFrame(((TemplateContext) context).getFrame());
                 }
@@ -365,12 +368,12 @@ public final class UnifiedJEXL {
          * </p>
          * @param context the variable context
          * @return the result of this expression evaluation or null if an error occurs and the {@link JexlEngine} is
-         * silent
+         * running in silent mode
          * @throws UnifiedJEXL.Exception if an error occurs and the {@link JexlEngine} is not silent
          */
         public final Object evaluate(JexlContext context) {
             try {
-                Interpreter interpreter = new Interpreter(jexl, context, !jexl.isLenient(), false);
+                Interpreter interpreter = new Interpreter(jexl, context, !jexl.isLenient(), jexl.isSilent());
                 if (context instanceof TemplateContext) {
                     interpreter.setFrame(((TemplateContext) context).getFrame());
                 }
@@ -1295,7 +1298,7 @@ public final class UnifiedJEXL {
                 doPrint(value);
             }
         }
-        
+
         /**
          * Prints to output.
          * <p>This will dynamically try to find the best suitable method in the writer through uberspection.