Author: sebb
Date: Sat Aug  1 17:18:36 2009
New Revision: 799900

URL: http://svn.apache.org/viewvc?rev=799900&view=rev
Log:
Javadoc

Modified:
    
commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/JexlEngine.java

Modified: 
commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/JexlEngine.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/JexlEngine.java?rev=799900&r1=799899&r2=799900&view=diff
==============================================================================
--- 
commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/JexlEngine.java
 (original)
+++ 
commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/JexlEngine.java
 Sat Aug  1 17:18:36 2009
@@ -102,8 +102,8 @@
      */
     protected final Parser parser = new Parser(new StringReader(";")); 
//$NON-NLS-1$
     /**
-     * Whether expressions evaluated by this engine will throw exceptions or 
-     * return null.
+     * Whether expressions evaluated by this engine will throw exceptions 
(false) or 
+     * return null (true). Default is false.
      */
     protected boolean silent = false;
     /**
@@ -192,7 +192,7 @@
 
     /**
      * Checks whether this engine throws JexlException during evaluation.
-     * @return true if silent, false otherwise
+     * @return true if silent, false (default) otherwise
      */
     public boolean isSilent() {
         return this.silent;


Reply via email to