1 23 24 package javax.enterprise.deploy.model; 25 26 31 public interface DDBean 32 { 33 34 38 public String getXpath(); 39 40 44 public String getText(); 45 46 53 public String getId(); 54 55 60 public DDBeanRoot getRoot(); 61 62 69 public DDBean [] getChildBean(String xpath); 70 71 78 public String [] getText(String xpath); 79 80 86 public void addXpathListener(String xpath, XpathListener xpl); 87 88 95 public void removeXpathListener(String xpath, XpathListener xpl); 96 97 103 public String [] getAttributeNames(); 104 105 111 public String getAttributeValue(String attrName); 112 } 113 114 | Popular Tags |