|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The listener interface for receiving bound property events (as well as property events).
Classes that are interested in processing a bound property event
implement this interface, and register instance objects with a given
PropertyMap
or via
PropertyManager.addPropertyListener(PropertyListener)
.
Note that this is not the typical listener interface, as it extends
from PropertyListener
, and defines getPropertyName()
which is not an event triggered method. This method serves to instruct
the PropertyMap
the listener is registered with, which property
it will bind to.
Method Summary | |
String |
getPropertyName()
Get the property name which this listener is bound to. |
void |
propertyBound(PropertyMap map)
Notifies that this listener was bound to a property. |
void |
propertyUnbound(PropertyMap map)
Notifies that this listener was unbound from a property. |
Methods inherited from interface org.jboss.util.property.PropertyListener |
propertyAdded, propertyChanged, propertyRemoved |
Method Detail |
public String getPropertyName()
public void propertyBound(PropertyMap map)
map
- PropertyMap which contains property bound to.public void propertyUnbound(PropertyMap map)
map
- PropertyMap which contains property bound to.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |