From: David ‘Bombe’ Roden Date: Mon, 7 Apr 2008 19:17:24 +0000 (+0000) Subject: add description X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=b54ce10d4cc8bfe13df0a6a48b0f37403a15b09f;p=jSite2.git add description git-svn-id: http://trooper/svn/projects/jSite/trunk@649 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/jsite/core/Project.java b/src/net/pterodactylus/jsite/core/Project.java index 71eba5f..61cfba9 100644 --- a/src/net/pterodactylus/jsite/core/Project.java +++ b/src/net/pterodactylus/jsite/core/Project.java @@ -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