Beispiel #1
0
 public void setDisplayName(String displayName) throws IOException {
     this.displayName = Util.fixEmpty(displayName);
     save();
 }
Beispiel #2
0
 /**
  * Sets the project description HTML.
  */
 public void setDescription(String description) throws IOException {
     this.description = description;
     save();
     ItemListener.fireOnUpdated(this);
 }
Beispiel #3
0
 @Override
 public synchronized void save() throws IOException {
   super.save();
   holdOffBuildUntilSave = false;
 }