geirm       01/04/22 16:02:03

  Modified:    src/java/org/apache/velocity/app Velocity.java
               src/java/org/apache/velocity/servlet VelocityServlet.java
  Log:
  javadoc update
  
  Revision  Changes    Path
  1.13      +4 -2      jakarta-velocity/src/java/org/apache/velocity/app/Velocity.java
  
  Index: Velocity.java
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/src/java/org/apache/velocity/app/Velocity.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Velocity.java     2001/04/22 18:20:17     1.12
  +++ Velocity.java     2001/04/22 23:02:02     1.13
  @@ -107,7 +107,7 @@
    * @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
    * @author <a href="[EMAIL PROTECTED]">Christoph Reck</a>
    * @author <a href="[EMAIL PROTECTED]">Jason van Zyl</a>
  - * @version $Id: Velocity.java,v 1.12 2001/04/22 18:20:17 geirm Exp $
  + * @version $Id: Velocity.java,v 1.13 2001/04/22 23:02:02 geirm Exp $
    */
   
   public class Velocity implements RuntimeConstants
  @@ -245,7 +245,9 @@
        *
        *  @return true if successful, false otherwise.  If false, see 
        *               Velocity runtime log
  -     *  @deprecated
  +     *  @deprecated Use
  +     *  {@link #evaluate( Context context, Writer writer, 
  +     *      String logTag, Reader reader ) }
        */
       public static boolean evaluate( Context context, Writer writer, 
                                       String logTag, InputStream instream )
  
  
  
  1.32      +2 -2      
jakarta-velocity/src/java/org/apache/velocity/servlet/VelocityServlet.java
  
  Index: VelocityServlet.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/servlet/VelocityServlet.java,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- VelocityServlet.java      2001/04/14 02:52:53     1.31
  +++ VelocityServlet.java      2001/04/22 23:02:03     1.32
  @@ -129,7 +129,7 @@
    * @author <a href="mailto:[EMAIL PROTECTED]">Jon S. Stevens</a>
    * @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
    * @author <a href="[EMAIL PROTECTED]">Kent Johnson</a>
  - * $Id: VelocityServlet.java,v 1.31 2001/04/14 02:52:53 geirm Exp $
  + * $Id: VelocityServlet.java,v 1.32 2001/04/22 23:02:03 geirm Exp $
    */
   public abstract class VelocityServlet extends HttpServlet
   {
  @@ -543,7 +543,7 @@
        * or throw a more meaningful exception.
        *
        * @deprecated Use
  -     * {@link handleRequest( HttpServletRequest request, 
  +     * {@link #handleRequest( HttpServletRequest request, 
        * HttpServletResponse response, Context ctx )}
        *
        * @param ctx The context to add your data to.
  
  
  

Reply via email to