joerg       2003/07/30 08:17:43

  Modified:    src/blocks/woody/java/org/apache/cocoon/woody/binding
                        RepeaterJXPathBindingBuilder.java
                        JXpathBindingBuilderBase.java
               src/blocks/deli/java/org/apache/cocoon/components/deli
                        DeliImpl.java
  Log:
  fixed javadoc warnings
  
  Revision  Changes    Path
  1.3       +11 -11    
cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/binding/RepeaterJXPathBindingBuilder.java
  
  Index: RepeaterJXPathBindingBuilder.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/binding/RepeaterJXPathBindingBuilder.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- RepeaterJXPathBindingBuilder.java 24 Jul 2003 12:39:17 -0000      1.2
  +++ RepeaterJXPathBindingBuilder.java 30 Jul 2003 15:17:43 -0000      1.3
  @@ -54,30 +54,30 @@
   import org.w3c.dom.Element;
   
   /**
  - * RepeaterJXPathBindingBuilder provides a helper class for the Factory 
  - * implemented in [EMAIL PROTECTED] JXPathBindingManager} that helps construct the 
  - * actual [EMAIL PROTECTED] RepeaterJXPathBinding} out of the configuration in the 
  + * RepeaterJXPathBindingBuilder provides a helper class for the Factory
  + * implemented in [EMAIL PROTECTED] JXPathBindingManager} that helps construct the
  + * actual [EMAIL PROTECTED] RepeaterJXPathBinding} out of the configuration in the
    * provided configElement which looks like:
    * <pre><code>
  - * &lt;wb:repeater 
  + * &lt;wb:repeater
    *   id="contacts"
    *   parent-path="contacts"
    *   row-path="contact"
    *   unique-row-id="id"
    *   unique-path="@id"   &gt;
  - * 
  + *
    *   &lt;wb:on-bind&gt;
    *      &lt;!-- nested bindings executed on updates AND right after the insert 
--&gt;
    *   &lt;/wb:on-bind&gt;
  - * 
  + *
    *   &lt;wb:on-delete-row&gt;
    *      &lt;!-- nested bindings executed on deletion of row --&gt;
    *   &lt;/wb:on-delete-row&gt;
  - * 
  + *
    *   &lt;wb:on-insert-row&gt;
    *      &lt;!-- nested bindings executed to prepare the insertion of a row --&gt;
    *   &lt;/wb:on-insert-row&gt;
  - * 
  + *
    * &lt;/wb:repeater&gt;
    * </code></pre>
    */
  @@ -85,12 +85,12 @@
       extends JXpathBindingBuilderBase {
   
       /**
  -     * Creates an instance of [EMAIL PROTECTED] RepeaterJXPathBinding} according to 
the 
  +     * Creates an instance of [EMAIL PROTECTED] RepeaterJXPathBinding} according to 
the
        * attributes and nested comfiguration elements of the bindingElm.
  -     * 
  +     *
        * @param bindingElm
        * @param assistant
  -     * @return
  +     * @return JXPathBindingBase
        */
       public JXPathBindingBase buildBinding(
           Element bindingElm,
  
  
  
  1.3       +6 -6      
cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/binding/JXpathBindingBuilderBase.java
  
  Index: JXpathBindingBuilderBase.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/binding/JXpathBindingBuilderBase.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- JXpathBindingBuilderBase.java     24 Jul 2003 12:39:17 -0000      1.2
  +++ JXpathBindingBuilderBase.java     30 Jul 2003 15:17:43 -0000      1.3
  @@ -71,20 +71,20 @@
   
       /**
        * Makes the logger available to the subclasses.
  -     * @return
  +     * @return Logger
        */
       protected Logger getLogger() {
           return this.logger;
       }
   
       /**
  -     * Builds a configured binding object based on the configuration as 
  -     * described in the bindingElement.  The BuilderMap can be used to 
  -     * find appropriate builders for possible subBinders.  
  -     * 
  +     * Builds a configured binding object based on the configuration as
  +     * described in the bindingElement.  The BuilderMap can be used to
  +     * find appropriate builders for possible subBinders.
  +     *
        * @param bindingElm
        * @param assistant
  -     * @return
  +     * @return JXPathBindingBase
        */
       public abstract JXPathBindingBase buildBinding(
           Element bindingElm,
  
  
  
  1.5       +2 -2      
cocoon-2.1/src/blocks/deli/java/org/apache/cocoon/components/deli/DeliImpl.java
  
  Index: DeliImpl.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/deli/java/org/apache/cocoon/components/deli/DeliImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DeliImpl.java     30 Jul 2003 02:21:31 -0000      1.4
  +++ DeliImpl.java     30 Jul 2003 15:17:43 -0000      1.5
  @@ -343,7 +343,7 @@
           public Locale getLocale() { return request.getLocale(); }
           public Enumeration getLocales() { return request.getLocales(); }
   
  -        /** @deprecated use [EMAIL PROTECTED] 
CocoonServletContext#getRealPath(java.lang.String)} instead. */
  +        /** @deprecated use [EMAIL PROTECTED] 
org.apache.cocoon.components.deli.DeliImpl.CocoonServletContext#getRealPath(java.lang.String)}
 instead. */
           public String getRealPath(String s) { return null; }
           public Cookie[] getCookies() { return null; }
           public RequestDispatcher getRequestDispatcher(String s) { return null; }
  
  
  

Reply via email to