Improvement: add graphical ui

This commit is contained in:
Laurent Clouet
2015-01-15 23:20:17 +01:00
parent 2df4657202
commit df7c97b6a4
13 changed files with 481 additions and 0 deletions

View File

@@ -77,10 +77,18 @@ public class Configuration {
return this.login;
}
public void setLogin(String login_) {
this.login = login_;
}
public String password() {
return this.password;
}
public void setPassword(String password_) {
this.password = password_;
}
public int maxUploadingJob() {
return this.maxUploadingJob;
}
@@ -165,6 +173,10 @@ public class Configuration {
}
}
public boolean getUserSpecifiedACacheDir() {
return this.userSpecifiedACacheDir;
}
public void setExtras(String str) {
this.extras = str;
}