示例#1
0
 public void setDisplayName(String displayName) throws IOException {
     this.displayName = Util.fixEmpty(displayName);
     save();
 }
示例#2
0
 /**
  * Sets the project description HTML.
  */
 public void setDescription(String description) throws IOException {
     this.description = description;
     save();
     ItemListener.fireOnUpdated(this);
 }
示例#3
0
文件: Job.java 项目: neo2buha/jenkins
 @Override
 public synchronized void save() throws IOException {
   super.save();
   holdOffBuildUntilSave = false;
 }