make all methods public
[jSite2.git] / src / net / pterodactylus / jsite / core / Project.java
index 8a1de1d..71eba5f 100644 (file)
@@ -44,7 +44,7 @@ public class Project {
         * 
         * @return The name of the project
         */
-       String getName() {
+       public String getName() {
                return name;
        }
 
@@ -54,7 +54,7 @@ public class Project {
         * @param name
         *            The name of the project
         */
-       void setName(String name) {
+       public void setName(String name) {
                this.name = name;
        }
 
@@ -63,7 +63,7 @@ public class Project {
         * 
         * @return The local path of the project
         */
-       String getLocalPath() {
+       public String getLocalPath() {
                return localPath;
        }
 
@@ -73,7 +73,7 @@ public class Project {
         * @param localPath
         *            The local path of the project
         */
-       void setLocalPath(String localPath) {
+       public void setLocalPath(String localPath) {
                this.localPath = localPath;
        }
 
@@ -82,7 +82,7 @@ public class Project {
         * 
         * @return The public key of the project
         */
-       String getPublicKey() {
+       public String getPublicKey() {
                return publicKey;
        }
 
@@ -92,7 +92,7 @@ public class Project {
         * @param publicKey
         *            The public key of the project
         */
-       void setPublicKey(String publicKey) {
+       public void setPublicKey(String publicKey) {
                this.publicKey = publicKey;
        }
 
@@ -101,7 +101,7 @@ public class Project {
         * 
         * @return The private key of the project
         */
-       String getPrivateKey() {
+       public String getPrivateKey() {
                return privateKey;
        }
 
@@ -111,7 +111,7 @@ public class Project {
         * @param privateKey
         *            The private key of the project
         */
-       void setPrivateKey(String privateKey) {
+       public void setPrivateKey(String privateKey) {
                this.privateKey = privateKey;
        }