You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by eg...@apache.org on 2003/08/05 20:17:28 UTC

cvs commit: cocoon-lenya/src/java/org/apache/lenya/cms/ant InitWorkflowHistoryTask.java

egli        2003/08/05 11:17:28

  Modified:    src/java/org/apache/lenya/cms/ant
                        InitWorkflowHistoryTask.java
  Log:
  javadoc fixes to make checkstyle happy.
  
  Revision  Changes    Path
  1.5       +19 -13    cocoon-lenya/src/java/org/apache/lenya/cms/ant/InitWorkflowHistoryTask.java
  
  Index: InitWorkflowHistoryTask.java
  ===================================================================
  RCS file: /home/cvs/cocoon-lenya/src/java/org/apache/lenya/cms/ant/InitWorkflowHistoryTask.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- InitWorkflowHistoryTask.java	9 Jul 2003 11:59:08 -0000	1.4
  +++ InitWorkflowHistoryTask.java	5 Aug 2003 18:17:28 -0000	1.5
  @@ -69,8 +69,6 @@
   /**
    * @author andreas
    *
  - * To change the template for this generated type comment go to
  - * Window>Preferences>Java>Code Generation>Code and Comments
    */
   public class InitWorkflowHistoryTask extends PublicationTask {
       /**
  @@ -101,7 +99,9 @@
       private String documentType;
   
       /**
  -     * @return
  +     * Get the document-id.
  +     * 
  +     * @return the document-id
        */
       public String getDocumentId() {
           assertString(documentId);
  @@ -110,15 +110,19 @@
       }
   
       /**
  -     * @param string
  +     * Set the document-id.
  +     * 
  +     * @param aDocumentId the document-id
        */
  -    public void setDocumentId(String string) {
  -        assertString(string);
  -        documentId = string;
  +    public void setDocumentId(String aDocumentId) {
  +        assertString(aDocumentId);
  +        documentId = aDocumentId;
       }
   
       /**
  -     * @return
  +     * Get the document type.
  +     * 
  +     * @return the document type
        */
       public String getDocumentType() {
           assertString(documentType);
  @@ -127,10 +131,12 @@
       }
   
       /**
  -     * @param string
  +     * Set the document type.
  +     * 
  +     * @param aDocumentType the document type
        */
  -    public void setDocumentType(String string) {
  -        assertString(documentId);
  -        documentType = string;
  +    public void setDocumentType(String aDocumentType) {
  +        assertString(aDocumentType);
  +        documentType = aDocumentType;
       }
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org