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