예제 #1
0
 public ConfigurationElementBuilder removeAttribute(String name) {
   configurationElement.getMutableAttributes().remove(name);
   return this;
 }
예제 #2
0
 public ConfigurationElementBuilder addAttribute(String name, String value) {
   configurationElement.getMutableAttributes().put(name, value);
   return this;
 }