tdawson     01/10/14 14:52:09

  Modified:    i18n/src/org/apache/taglibs/i18n FormatDateTag.java
  Log:
  fixed @link elements
  
  Revision  Changes    Path
  1.2       +8 -8      
jakarta-taglibs/i18n/src/org/apache/taglibs/i18n/FormatDateTag.java
  
  Index: FormatDateTag.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-taglibs/i18n/src/org/apache/taglibs/i18n/FormatDateTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FormatDateTag.java        2001/04/28 15:05:44     1.1
  +++ FormatDateTag.java        2001/10/14 21:52:09     1.2
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-taglibs/i18n/src/org/apache/taglibs/i18n/FormatDateTag.java,v 1.1 
2001/04/28 15:05:44 jstrachan Exp $
  - * $Revision: 1.1 $
  - * $Date: 2001/04/28 15:05:44 $
  + * $Header: 
/home/cvs/jakarta-taglibs/i18n/src/org/apache/taglibs/i18n/FormatDateTag.java,v 1.2 
2001/10/14 21:52:09 tdawson Exp $
  + * $Revision: 1.2 $
  + * $Date: 2001/10/14 21:52:09 $
    *
    * ====================================================================
    * 
  @@ -66,11 +66,11 @@
   import java.text.SimpleDateFormat;
   import java.util.Date;
   
  -/** Formats a {@link Date} instance using a {@link Locale} and either a 
  -  * {@link DateFormat} or a pattern based {@link SimpleDateFormat}.
  +/** Formats a {@link java.util.Date} instance using a {@link java.util.Locale} and 
either a 
  +  * {@link java.text.DateFormat} or a pattern based {@link SimpleDateFormat}.
     *
     * @author James Strachan
  -  * @version $Revision: 1.1 $
  +  * @version $Revision: 1.2 $
     */
   public class FormatDateTag extends FormatDateTagSupport {
       
  @@ -94,9 +94,9 @@
       // Properties
       //-------------------------------------------------------------------------
       
  -    /** If no {@link DateFormat} is configured then use a 
  +    /** If no {@link java.text.DateFormat} is configured then use a 
         * {@link SimpleDateFormat} instance if a pattern is configured else
  -      * use the default DateFormat for the {@link Locale}
  +      * use the default DateFormat for the {@link java.util.Locale}
         */
       public Format getFormat() {
           if ( format == null ) {
  
  
  


Reply via email to