You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by br...@apache.org on 2003/07/28 17:54:57 UTC

cvs commit: cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/datatype ValidationError.java

bruno       2003/07/28 08:54:57

  Modified:    src/blocks/woody/java/org/apache/cocoon/woody/datatype
                        ValidationError.java
  Log:
  javadoc enhancements
  
  Revision  Changes    Path
  1.3       +8 -0      cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/datatype/ValidationError.java
  
  Index: ValidationError.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/datatype/ValidationError.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ValidationError.java	14 May 2003 11:45:43 -0000	1.2
  +++ ValidationError.java	28 Jul 2003 15:54:57 -0000	1.3
  @@ -88,6 +88,7 @@
       }
   
       /**
  +     * @param errorMessageKey a message key, to be translated by the I18nTransformer
        * @param parameters parameters to be substituted in the errorMessage (will be
        * done by the I18nTransformer)
        */
  @@ -99,6 +100,9 @@
       }
   
       /**
  +     * @param errorMessageKey a message key, to be translated by the I18nTransformer
  +     * @param parameters parameters to be substituted in the errorMessage (will be
  +     * done by the I18nTransformer)
        * @param keys Each element in the keys array corresponds to a string in the parameters array
        * and indicates whether that parameter is in itself again a key.
        */
  @@ -109,6 +113,10 @@
           this.i18n = true;
       }
   
  +    /**
  +     * @param errorMessage the errormessages as precompiled XML produced by the
  +     *        {@link org.apache.cocoon.components.sax.XMLByteStreamCompiler XMLByteStreamCompiler}.
  +     */
       public ValidationError(Object errorMessage) {
           this.saxFragment = errorMessage;
       }