add description
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 7 Apr 2008 19:17:24 +0000 (19:17 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 7 Apr 2008 19:17:24 +0000 (19:17 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@649 c3eda9e8-030b-0410-8277-bc7414b0a119

src/net/pterodactylus/jsite/core/Project.java

index 71eba5f..61cfba9 100644 (file)
@@ -30,6 +30,9 @@ public class Project {
        /** The name of the project. */
        private String name;
 
+       /** The description of the project. */
+       private String description;
+
        /** The local path of the project. */
        private String localPath;
 
@@ -59,6 +62,25 @@ public class Project {
        }
 
        /**
+        * Returns the description of the project.
+        * 
+        * @return The description of the project
+        */
+       String getDescription() {
+               return description;
+       }
+
+       /**
+        * Sets the description of the project
+        * 
+        * @param description
+        *            The description of the project
+        */
+       void setDescription(String description) {
+               this.description = description;
+       }
+
+       /**
         * Returns the local path of the project.
         * 
         * @return The local path of the project