|
|||||||||
| Home >> All >> javax >> enterprise >> deploy >> [ model overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
javax.enterprise.deploy.model
Class XpathEvent

java.lang.Objectjavax.enterprise.deploy.model.XpathEvent
- public class XpathEvent
- extends java.lang.Object
An Event class describing DDBeans being added to or removed from a J2EE application, or updated in place.
- Version:
- $Rev: 46019 $ $Date: 2004-09-14 02:56:06 -0700 (Tue, 14 Sep 2004) $
| Field Summary | |
private DDBean |
bean
|
static java.lang.Object |
BEAN_ADDED
Adding a DDBean |
static java.lang.Object |
BEAN_CHANGED
Changing a DDBean |
static java.lang.Object |
BEAN_REMOVED
Removing a DDBean |
private java.beans.PropertyChangeEvent |
pce
|
private java.lang.Object |
type
|
| Constructor Summary | |
XpathEvent(DDBean bean,
java.lang.Object type)
A description of a change in the DDBean tree. |
|
| Method Summary | |
DDBean |
getBean()
The bean being added/removed/changed. |
java.beans.PropertyChangeEvent |
getChangeEvent()
Gets the underlying property change event, with new and old values. |
boolean |
isAddEvent()
Is this an add event? |
boolean |
isChangeEvent()
Is this a change event? |
boolean |
isRemoveEvent()
Is this a remove event? |
void |
setChangeEvent(java.beans.PropertyChangeEvent pce)
Sets the underlying property change event, with new and old values. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
BEAN_ADDED
public static final java.lang.Object BEAN_ADDED
- Adding a DDBean
BEAN_REMOVED
public static final java.lang.Object BEAN_REMOVED
- Removing a DDBean
BEAN_CHANGED
public static final java.lang.Object BEAN_CHANGED
- Changing a DDBean
pce
private java.beans.PropertyChangeEvent pce
bean
private DDBean bean
type
private java.lang.Object type
| Constructor Detail |
XpathEvent
public XpathEvent(DDBean bean, java.lang.Object type)
- A description of a change in the DDBean tree.
| Method Detail |
getChangeEvent
public java.beans.PropertyChangeEvent getChangeEvent()
- Gets the underlying property change event, with new and
old values. This is typically used for change events.
It is not in the public API, but is included in the
downloadable JSR-88 classes.
setChangeEvent
public void setChangeEvent(java.beans.PropertyChangeEvent pce)
- Sets the underlying property change event, with new and
old values. This is typically used for change events.
It is not in the public API, but is included in the
downloadable JSR-88 classes.
getBean
public DDBean getBean()
- The bean being added/removed/changed.
isAddEvent
public boolean isAddEvent()
- Is this an add event?
isRemoveEvent
public boolean isRemoveEvent()
- Is this a remove event?
isChangeEvent
public boolean isChangeEvent()
- Is this a change event?
|
|||||||||
| Home >> All >> javax >> enterprise >> deploy >> [ model overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
javax.enterprise.deploy.model.XpathEvent