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:48:10 UTC

cvs commit: jakarta-turbine-maven/src/java/org/apache/maven/project Workspace.java

jvanzyl     02/02/24 09:48:10

  Modified:    src/java/org/apache/maven/project Workspace.java
  Log:
  - javadoc
  
  Revision  Changes    Path
  1.3       +37 -15    jakarta-turbine-maven/src/java/org/apache/maven/project/Workspace.java
  
  Index: Workspace.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/project/Workspace.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Workspace.java	21 Feb 2002 14:09:23 -0000	1.2
  +++ Workspace.java	24 Feb 2002 17:48:09 -0000	1.3
  @@ -1,4 +1,5 @@
   package org.apache.maven.project;
  +
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  @@ -53,13 +54,12 @@
    * <http://www.apache.org/>.
    */
   
  -
   /**
    * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
  - * @version $Id: Workspace.java,v 1.2 2002/02/21 14:09:23 jvanzyl Exp $
  + * @version $Id: Workspace.java,v 1.3 2002/02/24 17:48:09 jvanzyl Exp $
    */
   public class Workspace
  -    extends BaseObject
  +     extends BaseObject
   {
       private String baseDir;
       private String packageDir;
  @@ -69,47 +69,69 @@
       /**
        * Default constructor
        */
  -    public Workspace()
  -    {
  -    }
  +    public Workspace() { }
   
  +    /**
  +     * Sets the baseDir attribute of the Workspace object
  +     */
       public void setBaseDir(String baseDir)
       {
           this.baseDir = baseDir;
  -    }        
  +    }
   
  +    /**
  +     * Gets the baseDir attribute of the Workspace object
  +     */
       public String getBaseDir()
       {
           return baseDir;
  -    }        
  +    }
   
  +    /**
  +     * Sets the packageDir attribute of the Workspace object
  +     */
       public void setPackageDir(String packageDir)
       {
           this.packageDir = packageDir;
  -    }        
  +    }
   
  +    /**
  +     * Gets the packageDir attribute of the Workspace object
  +     */
       public String getPackageDir()
       {
           return packageDir;
  -    }        
  +    }
   
  +    /**
  +     * Sets the version attribute of the Workspace object
  +     */
       public void setVersion(String version)
       {
           this.version = version;
  -    }        
  +    }
   
  +    /**
  +     * Gets the version attribute of the Workspace object
  +     */
       public String getVersion()
       {
           return version;
  -    }        
  -    
  +    }
  +
  +    /**
  +     * Sets the profile attribute of the Workspace object
  +     */
       public void setProfile(Profile profile)
       {
           this.profile = profile;
  -    }        
  +    }
   
  +    /**
  +     * Gets the profile attribute of the Workspace object
  +     */
       public Profile getProfile()
       {
           return profile;
  -    }        
  +    }
   }
  
  
  

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