public static final String PROPERTY_PRIVATE_KEY = "privateKey";
/** Name of the “local path” property. */
- public static final String PROPERTY_LOCAL_PATH = "localPath";
+ public static final String PROPERTY_BASE_PATH = "basePath";
/** The name of the project. */
private String name;
public void setBasePath(String basePath) {
String oldBasePath = this.basePath;
this.basePath = basePath;
- fireIfPropertyChanged(PROPERTY_LOCAL_PATH, oldBasePath, basePath);
+ fireIfPropertyChanged(PROPERTY_BASE_PATH, oldBasePath, basePath);
}
}