joerg       2004/05/07 10:32:59

  Modified:    src/blocks/scratchpad/java/org/apache/cocoon/servlet
                        CocoonFilterGeneratorImpl.java
               src/blocks/forms/java/org/apache/cocoon/forms/formmodel
                        AggregateFieldDefinition.java
               src/blocks/woody/java/org/apache/cocoon/woody/formmodel
                        AggregateFieldDefinition.java
               
src/blocks/scratchpad/java/org/apache/cocoon/components/source/impl
                        CachingSourceFactory.java
               src/blocks/scratchpad/java/org/apache/cocoon/generation
                        RequestAttributeGenerator.java
  Log:
  fixed javadoc errors (thanks to Jorg Heymans)
  
  Revision  Changes    Path
  1.4       +4 -5      
cocoon-2.1/src/blocks/scratchpad/java/org/apache/cocoon/servlet/CocoonFilterGeneratorImpl.java
  
  Index: CocoonFilterGeneratorImpl.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/scratchpad/java/org/apache/cocoon/servlet/CocoonFilterGeneratorImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CocoonFilterGeneratorImpl.java    5 Mar 2004 10:07:26 -0000       1.3
  +++ CocoonFilterGeneratorImpl.java    7 May 2004 17:32:58 -0000       1.4
  @@ -117,7 +117,6 @@
    * @author <a href="mailto:[EMAIL PROTECTED]">Bernhard Huber</a>
    * @version CVS $Id$
    *
  - * @servlet:filter-name    CocoonFilterGeneratorImpl
    */
   public class CocoonFilterGeneratorImpl implements Filter {
   
  @@ -176,7 +175,7 @@
       }
       
       /**
  -     * Sets the filterConfig attribute of the JSPFilterImpl object
  +     * Sets the filterConfig attribute of the CocoonFilterGeneratorImpl 
object
        *
        * @param  cfg  The new filterConfig value
        * @since 1.0
  @@ -197,7 +196,7 @@
   
   
       /**
  -     * Gets the filterConfig attribute of the JSPFilterImpl object
  +     * Gets the filterConfig attribute of the CocoonFilterGeneratorImpl 
object
        *
        * @return    The filterConfig value
        * @since 1.0
  @@ -473,7 +472,7 @@
            * @since 1.0
            */
           public String getServletName() {
  -            return "JSPEngineImpl";
  +            return "CocoonFilterGeneratorImpl";
           }
   
   
  
  
  
  1.3       +2 -2      
cocoon-2.1/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AggregateFieldDefinition.java
  
  Index: AggregateFieldDefinition.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AggregateFieldDefinition.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AggregateFieldDefinition.java     21 Apr 2004 20:30:49 -0000      1.2
  +++ AggregateFieldDefinition.java     7 May 2004 17:32:58 -0000       1.3
  @@ -54,7 +54,7 @@
       protected XMLizable splitFailMessage;
   
       /**
  -     * List containing instances of [EMAIL PROTECTED] #splitMappings}, i.e. 
the mapping between
  +     * List containing instances of [EMAIL PROTECTED] SplitMapping}, i.e. 
the mapping between
        * a group (paren) from the regular expression and corresponding field 
id.
        */
       private List splitMappings = new ArrayList();
  
  
  
  1.11      +2 -2      
cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/formmodel/AggregateFieldDefinition.java
  
  Index: AggregateFieldDefinition.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/formmodel/AggregateFieldDefinition.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- AggregateFieldDefinition.java     9 Mar 2004 13:53:55 -0000       1.10
  +++ AggregateFieldDefinition.java     7 May 2004 17:32:59 -0000       1.11
  @@ -54,7 +54,7 @@
       protected XMLizable splitFailMessage;
   
       /**
  -     * List containing instances of [EMAIL PROTECTED] #splitMappings}, i.e. 
the mapping between
  +     * List containing instances of [EMAIL PROTECTED] SplitMapping}, i.e. 
the mapping between
        * a group (paren) from the regular expression and corresponding field 
id.
        */
       private List splitMappings = new ArrayList();
  
  
  
  1.10      +3 -3      
cocoon-2.1/src/blocks/scratchpad/java/org/apache/cocoon/components/source/impl/CachingSourceFactory.java
  
  Index: CachingSourceFactory.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/scratchpad/java/org/apache/cocoon/components/source/impl/CachingSourceFactory.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- CachingSourceFactory.java 25 Apr 2004 20:00:35 -0000      1.9
  +++ CachingSourceFactory.java 7 May 2004 17:32:59 -0000       1.10
  @@ -80,14 +80,14 @@
    *  <td>Role of component used as cache.</td>
    *  <td>opt</td>
    *  <td>String</td>
  - *  <td><code>[EMAIL PROTECTED] Cache.ROLE}</code></td>
  + *  <td><code>[EMAIL PROTECTED] Cache#ROLE}</code></td>
    * </tr>
    * <tr>
    *  <th>refresher-role (String)</th>
    *  <td>Role of component used for refreshing sources.</td>
    *  <td>opt</td>
    *  <td>String</td>
  - *  <td><code>[EMAIL PROTECTED] 
org.apache.cocoon.components.source.impl.Refresher.ROLE}</code></td>
  + *  <td><code>[EMAIL PROTECTED] 
org.apache.cocoon.components.source.impl.Refresher#ROLE}</code></td>
    * </tr>
    * <tr>
    *  <th>async (boolean)</th>
  
  
  
  1.5       +6 -10     
cocoon-2.1/src/blocks/scratchpad/java/org/apache/cocoon/generation/RequestAttributeGenerator.java
  
  Index: RequestAttributeGenerator.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/scratchpad/java/org/apache/cocoon/generation/RequestAttributeGenerator.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- RequestAttributeGenerator.java    5 Mar 2004 10:07:26 -0000       1.4
  +++ RequestAttributeGenerator.java    7 May 2004 17:32:59 -0000       1.5
  @@ -36,18 +36,14 @@
    * @author <a href="mailto:[EMAIL PROTECTED]">Bernhard Huber</a>
    * @version CVS $Id$
    *
  - * @cocoon:name                      req-attr
  - * @cocoon:status                    scratchpad
  - * @cocoon:parameter                 name="attribute-name"
  + * @cocoon.sitemap.component.name       req-attr
  + * @cocoon.sitemap.component.label      content
  + * @cocoon.sitemap.component.logger     sitemap.generator.req-attr
  + * @cocoon.sitemap.component.parameter  attribute-name
    *   type="String"
  - *   description="Specifies name of request attribute holding xml-data"
  + *   description="Specifies name of request attribute holding xml data. This 
xml data will be sent into the cocoon pipeline."
    *   required="no"
    *   default="org.apache.cocoon.xml-data"
  - * @cocoon:http-request-attribute    name="org.apache.cocoon.xml-data"
  - *   type="String xml-data"
  - *   description="The xml-data of this request attribute is sent into the 
cocoon-pipeline."
  - *   required="yes"
  - *   default="none"
    */
   public class RequestAttributeGenerator extends ServiceableGenerator {
   
  
  
  

Reply via email to