| java.lang.Object javax.enterprise.deploy.model.XpathEvent
XpathEvent | final public class XpathEvent (Code) | | An event describing ConfigBeans added/changed/removed from a configuration
|
BEAN_ADDED | final public static Object BEAN_ADDED(Code) | | A bean is added
|
BEAN_CHANGED | final public static Object BEAN_CHANGED(Code) | | A bean is changed
|
BEAN_REMOVED | final public static Object BEAN_REMOVED(Code) | | A bean is removed
|
XpathEvent | public XpathEvent(DDBean bean, Object type)(Code) | | Create a new XpathEvent
Parameters: bean - the bean Parameters: type - the event type |
getBean | public DDBean getBean()(Code) | | Get the DDBean
the DDBean |
isAddEvent | public boolean isAddEvent()(Code) | | Is it an add event
true when it is an add event, false otherwise |
isChangeEvent | public boolean isChangeEvent()(Code) | | Is it a change event
true when it is a change event, false otherwise |
isRemoveEvent | public boolean isRemoveEvent()(Code) | | Is it a remove event
true when it is a remove event, false otherwise |
setChangeEvent | public void setChangeEvent(PropertyChangeEvent propertyChangeEvent)(Code) | | Set the property change event
Parameters: propertyChangeEvent - the property change event |
|
|