/** 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
}
/**
- * 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);
}
}