You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by ha...@apache.org on 2002/06/07 10:50:15 UTC

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/acting/modular DatabaseAction.java

haul        2002/06/07 01:50:15

  Modified:    src/java/org/apache/cocoon/components/modules/output
                        OutputModule.java
               src/java/org/apache/cocoon/components/modules/input
                        InputModule.java
               src/java/org/apache/cocoon/components/modules/database
                        HsqlIdentityAutoIncrementModule.java
                        MysqlAutoIncrementModule.java
               src/java/org/apache/cocoon/acting/modular
                        DatabaseAction.java
  Log:
  fix javadoc
  
  Revision  Changes    Path
  1.3       +2 -2      xml-cocoon2/src/java/org/apache/cocoon/components/modules/output/OutputModule.java
  
  Index: OutputModule.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/modules/output/OutputModule.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- OutputModule.java	28 May 2002 13:41:29 -0000	1.2
  +++ OutputModule.java	7 Jun 2002 08:50:14 -0000	1.3
  @@ -63,7 +63,7 @@
    * the transaction completes successfully.
    *
    * @author <a href="mailto:haul@apache.org">Christian Haul</a>
  - * @version CVS $Id: OutputModule.java,v 1.2 2002/05/28 13:41:29 haul Exp $
  + * @version CVS $Id: OutputModule.java,v 1.3 2002/06/07 08:50:14 haul Exp $
    */
   public interface OutputModule extends Component {
   
  @@ -96,7 +96,7 @@
   
       /**
        * Signal that the database transaction completed
  -     * successfully. See notes on @link{rollback}.
  +     * successfully. See notes on {@link #rollback rollback}.
        * */
       void commit( Configuration modeConf, Map objectModel );
   
  
  
  
  1.4       +7 -5      xml-cocoon2/src/java/org/apache/cocoon/components/modules/input/InputModule.java
  
  Index: InputModule.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/modules/input/InputModule.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- InputModule.java	28 May 2002 13:41:28 -0000	1.3
  +++ InputModule.java	7 Jun 2002 08:50:14 -0000	1.4
  @@ -65,7 +65,7 @@
    * attributes, session attributes &c.
    *
    * @author <a href="mailto:haul@apache.org">Christian Haul</a>
  - * @version CVS $Id: InputModule.java,v 1.3 2002/05/28 13:41:28 haul Exp $
  + * @version CVS $Id: InputModule.java,v 1.4 2002/06/07 08:50:14 haul Exp $
    */
   public interface InputModule extends Component {
   
  @@ -76,8 +76,9 @@
        * Standard access to an attribute's value. If more than one value
        * exists, the first is returned. If the value does not exist,
        * null is returned. To get all values, use {@link
  -     * getAttributeValues} or {@link getAttributeSet} and {@link
  -     * getValue} to get them one by one.
  +     * #getAttributeValues getAttributeSet} or {@link
  +     * #getAttributeNames getAttributeNames} and {@link #getAttribute
  +     * getAttribute} to get them one by one.
        * @param name a String that specifies what the caller thinks
        * would identify an attribute. This is mainly a fallback if no
        * modeConf is present.
  @@ -102,8 +103,9 @@
       /**
        * Returns an array of String objects containing all of the values
        * the given attribute has, or null if the attribute does not
  -     * exist. As an alternative, {@link getAttributeSet} together with
  -     * {@link getValue} can be used to get the values one by one.
  +     * exist. As an alternative, {@link #getAttributeNames
  +     * getAttributeNames} together with {@link #getAttribute
  +     * getAttribute} can be used to get the values one by one.
        * @param name a String that specifies what the caller thinks
        * would identify an attributes. This is mainly a fallback
        * if no modeConf is present.
  
  
  
  1.3       +2 -3      xml-cocoon2/src/java/org/apache/cocoon/components/modules/database/HsqlIdentityAutoIncrementModule.java
  
  Index: HsqlIdentityAutoIncrementModule.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/modules/database/HsqlIdentityAutoIncrementModule.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- HsqlIdentityAutoIncrementModule.java	28 May 2002 13:41:28 -0000	1.2
  +++ HsqlIdentityAutoIncrementModule.java	7 Jun 2002 08:50:14 -0000	1.3
  @@ -68,11 +68,10 @@
   /**
    * Abstraction layer to encapsulate different DBMS behaviour for autoincrement columns.
    *
  - * Here: HSQLDB 1.6 IDENTITY columns
  - * {@link http://hsqldb.sourceforge.net}
  + * Here: {@link <a href="http://hsqldb.sourceforge.net">HSQLDB</a>} 1.6 IDENTITY columns
    *
    * @author <a href="mailto:haul@apache.org">Christian Haul</a>
  - * @version CVS $Id: HsqlIdentityAutoIncrementModule.java,v 1.2 2002/05/28 13:41:28 haul Exp $
  + * @version CVS $Id: HsqlIdentityAutoIncrementModule.java,v 1.3 2002/06/07 08:50:14 haul Exp $
    */
   public class HsqlIdentityAutoIncrementModule implements AutoIncrementModule, ThreadSafe {
   
  
  
  
  1.3       +2 -3      xml-cocoon2/src/java/org/apache/cocoon/components/modules/database/MysqlAutoIncrementModule.java
  
  Index: MysqlAutoIncrementModule.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/modules/database/MysqlAutoIncrementModule.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MysqlAutoIncrementModule.java	28 May 2002 13:41:28 -0000	1.2
  +++ MysqlAutoIncrementModule.java	7 Jun 2002 08:50:14 -0000	1.3
  @@ -65,11 +65,10 @@
   /**
    * Abstraction layer to encapsulate different DBMS behaviour for autoincrement columns.
    *
  - * Here: MYSQL AUTO_INCREMENT columns
  - * {@link http://www.mysql.com}
  + * Here: {@link <a href="http://www.mysql.com">MYSQL</a>} AUTO_INCREMENT columns
    *
    * @author <a href="mailto:phantom@stserv.hcf.jhu.edu">Tim Myers</a>
  - * @version CVS $Id: MysqlAutoIncrementModule.java,v 1.2 2002/05/28 13:41:28 haul Exp $
  + * @version CVS $Id: MysqlAutoIncrementModule.java,v 1.3 2002/06/07 08:50:14 haul Exp $
    */
   public class MysqlAutoIncrementModule implements AutoIncrementModule, ThreadSafe {
   
  
  
  
  1.5       +4 -4      xml-cocoon2/src/java/org/apache/cocoon/acting/modular/DatabaseAction.java
  
  Index: DatabaseAction.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/acting/modular/DatabaseAction.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DatabaseAction.java	28 May 2002 13:42:50 -0000	1.4
  +++ DatabaseAction.java	7 Jun 2002 08:50:15 -0000	1.5
  @@ -141,10 +141,10 @@
    * </table>
    *
    * @author <a href="mailto:haul@apache.org">Christian Haul</a>
  - * @version CVS $Id: DatabaseAction.java,v 1.4 2002/05/28 13:42:50 haul Exp $
  - * @see org.apache.cocoon.modules.input
  - * @see org.apache.cocoon.modules.output
  - * @see org.apache.cocoon.modules.database
  + * @version CVS $Id: DatabaseAction.java,v 1.5 2002/06/07 08:50:15 haul Exp $
  + * @see org.apache.cocoon.components.modules.input
  + * @see org.apache.cocoon.components.modules.output
  + * @see org.apache.cocoon.components.modules.database
    */
   public abstract class DatabaseAction  extends AbstractComplementaryConfigurableAction implements Configurable, Disposable {
   
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org