1 37 package net.sourceforge.cruisecontrol.util; 38 39 import net.sourceforge.cruisecontrol.CruiseControlException; 40 41 57 public class NamedXPathAwareChild extends XPathAwareChild { 58 private String name; 59 60 public String getName() { 61 return name; 62 } 63 64 public void setName(String name) { 65 markDirty(); 66 this.name = name; 67 } 68 69 public void validate() throws CruiseControlException { 70 if (name == null) { 71 throw new CruiseControlException("name must be set."); 72 } 73 74 super.validate(); 75 } 76 77 } 78 | Popular Tags |