From: David ‘Bombe’ Roden Date: Wed, 21 May 2008 18:02:43 +0000 (+0000) Subject: rename local path to base path X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=ab67dc909286d978b0725b647b6232d255a7ea47;p=jSite2.git rename local path to base path git-svn-id: http://trooper/svn/projects/jSite/trunk@923 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/jsite/core/Project.java b/src/net/pterodactylus/jsite/core/Project.java index b22df7c..b93410a 100644 --- a/src/net/pterodactylus/jsite/core/Project.java +++ b/src/net/pterodactylus/jsite/core/Project.java @@ -59,8 +59,8 @@ public class Project extends AbstractBean { /** The private key. */ private String privateKey; - /** The local path of the project. */ - private String localPath; + /** The base path of the project. */ + private String basePath; // // EVENT MANAGEMENT @@ -159,24 +159,24 @@ public class Project extends AbstractBean { } /** - * Returns the local path of the project. + * Returns the base path of the project. * - * @return The local path of the project + * @return The base path of the project */ - public String getLocalPath() { - return localPath; + public String getBasePath() { + return basePath; } /** - * Sets the local path of the project. + * Sets the base path of the project. * - * @param localPath - * The local path of the project + * @param basePath + * The base path of the project */ - public void setLocalPath(String localPath) { - String oldLocalPath = this.localPath; - this.localPath = localPath; - firePropertyChange(PROPERTY_LOCAL_PATH, oldLocalPath, localPath); + public void setBasePath(String basePath) { + String oldBasePath = this.basePath; + this.basePath = basePath; + firePropertyChange(PROPERTY_LOCAL_PATH, oldBasePath, basePath); } }