Author: rahul Date: Tue Aug 11 17:42:50 2009 New Revision: 803230 URL: http://svn.apache.org/viewvc?rev=803230&view=rev Log: Clearer (IMO) and consistent Javadoc.
Modified: commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/Main.java commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/scripting/Main.java Modified: commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/Main.java URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/Main.java?rev=803230&r1=803229&r2=803230&view=diff ============================================================================== --- commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/Main.java (original) +++ commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/Main.java Tue Aug 11 17:42:50 2009 @@ -34,7 +34,8 @@ /** * Test application for Jexl * - * If a single argument is present, it is treated as a filename to be sourced. + * If a single argument is present, it is treated as a filename of a JEXL + * script to be executed. * Otherwise, lines are read from standard input and evaluated. * * @param args (optional) filename to evaluate. Stored in the args variable. Modified: commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/scripting/Main.java URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/scripting/Main.java?rev=803230&r1=803229&r2=803230&view=diff ============================================================================== --- commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/scripting/Main.java (original) +++ commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/scripting/Main.java Tue Aug 11 17:42:50 2009 @@ -35,7 +35,8 @@ /** * Test application for JexlScriptEngine (JSR-223 implementation). * - * If a single argument is present, it is treated as a filename to be evaluated. + * If a single argument is present, it is treated as a filename of a JEXL + * script to be executed. * Otherwise, lines are read from standard input and evaluated. * * @param args (optional) filename to evaluate. Stored in the args variable.