rename local path to base path
[jSite2.git] / src / net / pterodactylus / jsite / core / Project.java
index b22df7c..b93410a 100644 (file)
@@ -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);
        }
 
 }