add description
[jSite2.git] / 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