| javax.enterprise.deploy.model.DDBean
DDBean | public interface DDBean (Code) | | A fragment of a standard deployment descriptor.
author: Adrian Brock version: $Revision: 57196 $ |
addXpathListener | void addXpathListener(String xpath, XpathListener xpl)(Code) | | Register a listener for a given xpath
Parameters: xpath - the xpath Parameters: xpl - the listener |
getAttributeNames | String[] getAttributeNames()(Code) | | Returns the list of attributes associated with this element
the list of attributes |
getAttributeValue | String getAttributeValue(String attrName)(Code) | | Get the value for a given attribute
Parameters: attrName - the attribute name the value |
getChildBean | DDBean[] getChildBean(String xpath)(Code) | | Get the child elements with the specified xpath
Parameters: xpath - the xpath of the children an array of children or null if there are none |
getId | String getId()(Code) | | Returns the tool specific attribute ID
the id or null if there is no id |
getText | String getText()(Code) | | Returns the XML text for this bean
the text |
getText | String[] getText(String xpath)(Code) | | Get the text for the given xpath
Parameters: xpath - the xpath an array of Strings for the xpath or null if there are none |
getXpath | String getXpath()(Code) | | Returns the original xpath string provided by the DConfigBean
the xpath |
removeXpathListener | void removeXpathListener(String xpath, XpathListener xpl)(Code) | | Unregister a listener for a given xpath
Parameters: xpath - the xpath Parameters: xpl - the listener |
|
|