X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fcore%2FProject.java;h=cc5326891b4224e0ab6439802051ea890187f759;hb=fba184e707edc02ac0f7fc89a4378549a4602476;hp=71eba5ff043c07fe4012ff877ff3196719492900;hpb=3725ccb917a47a18d28fcf7a1b3d0e00ee3c991a;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/core/Project.java b/src/net/pterodactylus/jsite/core/Project.java index 71eba5f..cc53268 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 + */ + public String getDescription() { + return description; + } + + /** + * Sets the description of the project + * + * @param description + * The description of the project + */ + public void setDescription(String description) { + this.description = description; + } + + /** * Returns the local path of the project. * * @return The local path of the project