You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by jv...@apache.org on 2002/02/24 18:33:44 UTC

cvs commit: jakarta-turbine-maven/src/java/org/apache/maven/project Developer.java Jar.java MailingList.java

jvanzyl     02/02/24 09:33:44

  Modified:    src/java/org/apache/maven/project Developer.java Jar.java
                        MailingList.java
  Log:
  - more javadoc
  
  Revision  Changes    Path
  1.3       +31 -7     jakarta-turbine-maven/src/java/org/apache/maven/project/Developer.java
  
  Index: Developer.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/project/Developer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Developer.java	21 Feb 2002 14:09:23 -0000	1.2
  +++ Developer.java	24 Feb 2002 17:33:44 -0000	1.3
  @@ -1,4 +1,5 @@
   package org.apache.maven.project;
  +
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  @@ -55,35 +56,58 @@
   
   /**
    * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
  - * @version $Id: Developer.java,v 1.2 2002/02/21 14:09:23 jvanzyl Exp $
  + * @version $Id: Developer.java,v 1.3 2002/02/24 17:33:44 jvanzyl Exp $
    */
   public class Developer
  -    extends BaseObject
  +     extends BaseObject
   {
  +    /**
  +     * Developer's email address. NOTE: there may eventually be more than
  +     * one email address.
  +     */
       private String email;
  +
  +    /**
  +     * Developer's organziation.
  +     */
       private String organization;
  -    
  +
  +    /**
  +     * Constructor for the Developer object
  +     */
       public Developer()
       {
       }
   
  +    /**
  +     * Sets the email attribute of the Developer object
  +     */
       public void setEmail(String email)
       {
           this.email = email;
       }
  -    
  +
  +    /**
  +     * Gets the email attribute of the Developer object
  +     */
       public String getEmail()
       {
           return email;
       }
  -    
  +
  +    /**
  +     * Sets the organization attribute of the Developer object
  +     */
       public void setOrganization(String organization)
       {
           this.organization = organization;
       }
  -    
  +
  +    /**
  +     * Gets the organization attribute of the Developer object
  +     */
       public String getOrganization()
       {
           return organization;
  -    }        
  +    }
   }
  
  
  
  1.3       +1 -2      jakarta-turbine-maven/src/java/org/apache/maven/project/Jar.java
  
  Index: Jar.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/project/Jar.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Jar.java	21 Feb 2002 14:09:23 -0000	1.2
  +++ Jar.java	24 Feb 2002 17:33:44 -0000	1.3
  @@ -53,10 +53,9 @@
    * <http://www.apache.org/>.
    */
   
  -
   /**
    * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
  - * @version $Id: Jar.java,v 1.2 2002/02/21 14:09:23 jvanzyl Exp $
  + * @version $Id: Jar.java,v 1.3 2002/02/24 17:33:44 jvanzyl Exp $
    */
   public class Jar
       extends BaseObject
  
  
  
  1.3       +37 -7     jakarta-turbine-maven/src/java/org/apache/maven/project/MailingList.java
  
  Index: MailingList.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/project/MailingList.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MailingList.java	21 Feb 2002 14:09:23 -0000	1.2
  +++ MailingList.java	24 Feb 2002 17:33:44 -0000	1.3
  @@ -1,4 +1,5 @@
   package org.apache.maven.project;
  +
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  @@ -53,47 +54,76 @@
    * <http://www.apache.org/>.
    */
   
  -
   /**
    * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
  - * @version $Id: MailingList.java,v 1.2 2002/02/21 14:09:23 jvanzyl Exp $
  + * @version $Id: MailingList.java,v 1.3 2002/02/24 17:33:44 jvanzyl Exp $
    */
   public class MailingList
  -    extends BaseObject
  +     extends BaseObject
   {
  +    /**
  +     * Subcribe email address.
  +     */
       private String subscribe;
  +
  +    /**
  +     * Usubscribe email address.
  +     */
       private String unsubscribe;
  +
  +    /**
  +     * URL of the mail archive.
  +     */
       private String archive;
   
  -    public MailingList()
  -    {
  -    }
  -    
  +    /**
  +     * Constructor for the MailingList object
  +     */
  +    public MailingList() { }
  +
  +    /**
  +     * Sets the subscribe attribute of the MailingList object
  +     */
       public void setSubscribe(String subscribe)
       {
           this.subscribe = subscribe;
       }
   
  +    /**
  +     * Gets the subscribe attribute of the MailingList object
  +     */
       public String getSubscribe()
       {
           return subscribe;
       }
   
  +    /**
  +     * Sets the unsubscribe attribute of the MailingList object
  +     */
       public void setUnsubscribe(String unsubscribe)
       {
           this.unsubscribe = unsubscribe;
       }
   
  +    /**
  +     * Gets the unsubscribe attribute of the MailingList object
  +     */
       public String getUnsubscribe()
       {
           return unsubscribe;
       }
   
  +    /**
  +     * Sets the archive attribute of the MailingList object
  +     */
       public void setArchive(String archive)
       {
           this.archive = archive;
       }
   
  +    /**
  +     * Gets the archive attribute of the MailingList object
  +     */
       public String getArchive()
       {
           return archive;
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>