You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by mi...@apache.org on 2003/11/28 19:36:49 UTC

cvs commit: jakarta-tapestry/framework/src/org/apache/tapestry/parse LocalizationToken.java

mindbridge    2003/11/28 10:36:49

  Modified:    framework/src/org/apache/tapestry/util JanitorThread.java
               framework/src/org/apache/tapestry
                        ApplicationRuntimeException.java
               framework/src/org/apache/tapestry/valid UrlValidator.java
                        ValidatorException.java
               framework/src/org/apache/tapestry/parse
                        LocalizationToken.java
  Log:
  Fixing javadocs
  
  Revision  Changes    Path
  1.3       +3 -3      jakarta-tapestry/framework/src/org/apache/tapestry/util/JanitorThread.java
  
  Index: JanitorThread.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/util/JanitorThread.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- JanitorThread.java	28 May 2003 13:41:43 -0000	1.2
  +++ JanitorThread.java	28 Nov 2003 18:36:49 -0000	1.3
  @@ -90,7 +90,7 @@
       private static JanitorThread shared = null;
   
       /**
  -     *  A {@link List} of {@link WeakReference}s to {@link IJanitor} instances.
  +     *  A {@link List} of {@link WeakReference}s to {@link ICleanable} instances.
        *
        **/
   
  @@ -151,7 +151,7 @@
       /**
        *  Updates the property, then interrupts the thread.
        *
  -     *  @param the interval, in milliseconds, between sweeps.
  +     *  @param value the interval, in milliseconds, between sweeps.
        *
        *  @throws IllegalStateException always, if the receiver is the shared JanitorThread
        *  @throws IllegalArgumentException if value is less than 1
  
  
  
  1.8       +2 -2      jakarta-tapestry/framework/src/org/apache/tapestry/ApplicationRuntimeException.java
  
  Index: ApplicationRuntimeException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/ApplicationRuntimeException.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ApplicationRuntimeException.java	8 Nov 2003 14:04:38 -0000	1.7
  +++ ApplicationRuntimeException.java	28 Nov 2003 18:36:49 -0000	1.8
  @@ -59,7 +59,7 @@
    *  General wrapper for any exception (normal or runtime) that may occur during
    *  runtime processing for the application.  This is exception is used
    *  when the intent is to communicate a low-level failure to the user or
  - *  developer; it is not expected to be caught.  The {@link #getRootCause() rootCause}
  + *  developer; it is not expected to be caught.  The {@link #getCause() rootCause}
    *  property is a <em>nested</em> exception (Tapestry supported this concept
    *  long before the JDK did).
    *
  
  
  
  1.4       +7 -1      jakarta-tapestry/framework/src/org/apache/tapestry/valid/UrlValidator.java
  
  Index: UrlValidator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/valid/UrlValidator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UrlValidator.java	15 Nov 2003 12:58:58 -0000	1.3
  +++ UrlValidator.java	28 Nov 2003 18:36:49 -0000	1.4
  @@ -70,6 +70,12 @@
   import org.apache.tapestry.form.IFormComponent;
   import org.apache.tapestry.util.StringSplitter;
   
  +/**
  + *
  + *  @version $Id$
  + *  @since 3.0
  + *
  + **/
   public class UrlValidator extends BaseValidator {
   	private int _minimumLength;
   	private String _minimumLengthMessage;
  @@ -296,7 +302,7 @@
   	}
   
   	/**
  -	 * @param collection
  +	 * @param protocols comma separated list of allowed protocols
   	 */
   	public void setAllowedProtocols(String protocols) {
   		StringSplitter spliter = new StringSplitter(',');
  
  
  
  1.3       +2 -2      jakarta-tapestry/framework/src/org/apache/tapestry/valid/ValidatorException.java
  
  Index: ValidatorException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/valid/ValidatorException.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ValidatorException.java	17 Apr 2003 21:33:58 -0000	1.2
  +++ ValidatorException.java	28 Nov 2003 18:36:49 -0000	1.3
  @@ -85,7 +85,7 @@
        *  Creates a new instance.
        *  @param errorMessage the default error message to be used (this may be
        *  overriden by the {@link IValidationDelegate})
  -     *  @param renderer to use to render the error message (may be null) 
  +     *  @param errorRenderer to use to render the error message (may be null)
        *  @param constraint a validation constraint that has been compromised, or
        *  null if no constraint is applicable
        * 
  
  
  
  1.5       +2 -2      jakarta-tapestry/framework/src/org/apache/tapestry/parse/LocalizationToken.java
  
  Index: LocalizationToken.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/parse/LocalizationToken.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- LocalizationToken.java	21 Apr 2003 13:15:28 -0000	1.4
  +++ LocalizationToken.java	28 Nov 2003 18:36:49 -0000	1.5
  @@ -84,7 +84,7 @@
        *  @param tag the tag of the element from the template
        *  @param key the localization key specified
        *  @param raw if true, then the localized value contains markup that should not be escaped
  -     *  @param attribute any additional attributes (beyond those used to define key and raw)
  +     *  @param attributes any additional attributes (beyond those used to define key and raw)
        *  that were specified.  This value is retained, not copied.
        *  @param location location of the tag which defines this token
        * 
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-dev-help@jakarta.apache.org