1 17 package org.alfresco.config; 18 19 import java.util.List ; 20 import java.util.Map ; 21 22 27 public interface ConfigElement 28 { 29 34 public String getName(); 35 36 43 public String getAttribute(String name); 44 45 50 public Map <String , String > getAttributes(); 51 52 59 public boolean hasAttribute(String name); 60 61 66 public int getAttributeCount(); 67 68 74 public String getValue(); 75 76 82 public ConfigElement getChild(String name); 83 84 89 public List <ConfigElement> getChildren(); 90 91 98 public boolean hasChildren(); 99 100 105 public int getChildCount(); 106 107 116 public ConfigElement combine(ConfigElement configElement); 117 } 118 | Popular Tags |