From 3725ccb917a47a18d28fcf7a1b3d0e00ee3c991a Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Fri, 7 Mar 2008 22:50:14 +0000 Subject: [PATCH] make all methods public git-svn-id: http://trooper/svn/projects/jSite/trunk@548 c3eda9e8-030b-0410-8277-bc7414b0a119 --- src/net/pterodactylus/jsite/core/Project.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/net/pterodactylus/jsite/core/Project.java b/src/net/pterodactylus/jsite/core/Project.java index 8a1de1d..71eba5f 100644 --- a/src/net/pterodactylus/jsite/core/Project.java +++ b/src/net/pterodactylus/jsite/core/Project.java @@ -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; } -- 2.7.4