From b54ce10d4cc8bfe13df0a6a48b0f37403a15b09f Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Mon, 7 Apr 2008 19:17:24 +0000 Subject: [PATCH] add description git-svn-id: http://trooper/svn/projects/jSite/trunk@649 c3eda9e8-030b-0410-8277-bc7414b0a119 --- src/net/pterodactylus/jsite/core/Project.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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 -- 2.7.4