1 37 package net.sourceforge.cruisecontrol.labelincrementers; 38 39 import net.sourceforge.cruisecontrol.LabelIncrementer; 40 import org.jdom.Element; 41 42 public class EmptyLabelIncrementer implements LabelIncrementer { 43 44 private static final String EMPTY_STRING = ""; 45 46 public String incrementLabel(String oldLabel, Element buildLog) { 47 return EMPTY_STRING; 48 } 49 50 public boolean isPreBuildIncrementer() { 51 return true; 52 } 53 54 public boolean isValidLabel(String label) { 55 return true; 56 } 57 58 public String getDefaultLabel() { 59 return EMPTY_STRING; 60 } 61 62 } 63 | Popular Tags |