make accessors public
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 7 Apr 2008 19:21:06 +0000 (19:21 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 7 Apr 2008 19:21:06 +0000 (19:21 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@650 c3eda9e8-030b-0410-8277-bc7414b0a119

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

index 61cfba9..cc53268 100644 (file)
@@ -66,7 +66,7 @@ public class Project {
         * 
         * @return The description of the project
         */
-       String getDescription() {
+       public String getDescription() {
                return description;
        }
 
@@ -76,7 +76,7 @@ public class Project {
         * @param description
         *            The description of the project
         */
-       void setDescription(String description) {
+       public void setDescription(String description) {
                this.description = description;
        }