Example #1
0
 public String getAttribute(String name) {
   if (hexmlAttributes != null) return hexmlAttributes.get(name);
   return null;
 }
Example #2
0
 public void setAttribute(String name, String value) {
   if (hexmlAttributes == null) hexmlAttributes = new HFAttributeTable();
   hexmlAttributes.put(name, value);
 }