tobrien     2004/06/12 18:42:21

  Modified:    jexl/src/java/org/apache/commons/jexl Expression.java
                        ExpressionImpl.java
  Log:
  Cleaning Javadoc in Expression and ExpressionImpl
  
  Revision  Changes    Path
  1.6       +9 -2      
jakarta-commons/jexl/src/java/org/apache/commons/jexl/Expression.java
  
  Index: Expression.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/jexl/src/java/org/apache/commons/jexl/Expression.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Expression.java   12 Jun 2004 23:53:17 -0000      1.5
  +++ Expression.java   13 Jun 2004 01:42:21 -0000      1.6
  @@ -18,10 +18,17 @@
   
   
   /**
  + * <p>
    * Represents a single JEXL expression.  This simple interface
    * provides access to the underlying expression through getExpression(), 
  - * and it provides hooks to add a pre- and post- expression resolver.   
  + * and it provides hooks to add a pre- and post- expression resolver.
  + * </p>   
    *
  + * <p>
  + * An expression is different than a script - it is simply a reference of
  + * an expression.
  + * </p>
  + * 
    * @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
    * @version $Id$
    */
  
  
  
  1.8       +5 -6      
jakarta-commons/jexl/src/java/org/apache/commons/jexl/ExpressionImpl.java
  
  Index: ExpressionImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/jexl/src/java/org/apache/commons/jexl/ExpressionImpl.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ExpressionImpl.java       12 Jun 2004 23:53:17 -0000      1.7
  +++ ExpressionImpl.java       13 Jun 2004 01:42:21 -0000      1.8
  @@ -22,17 +22,16 @@
   import org.apache.commons.jexl.parser.SimpleNode;
   
   /**
  - *  Implelmentation of an Expression.  Created by the ExpressionFactory.
  - *   
  - *  The expression is different than a script - it's really just either
  - *  a reference or expression that we can get the value of.
  + * Instances of ExpressionImpl are created by the [EMAIL PROTECTED] 
ExpressionFactory},
  + * and this is the default implementation of the [EMAIL PROTECTED] Expression} 
interface.
    *
    *  @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
    *  @version $Id$
    */
   class ExpressionImpl implements Expression
   {
  -    List preResolvers;
  +
  +     List preResolvers;
       List postResolvers;
   
       /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to