org.jboss.util.property
Class BoundPropertyAdapter

java.lang.Object
  extended byorg.jboss.util.property.PropertyAdapter (src) 
      extended byorg.jboss.util.property.BoundPropertyAdapter
All Implemented Interfaces:
BoundPropertyListener (src) , java.util.EventListener, PropertyListener (src)
Direct Known Subclasses:
FieldBoundPropertyListener (src) , MethodBoundPropertyListener (src)

public abstract class BoundPropertyAdapter
extends PropertyAdapter (src)
implements BoundPropertyListener (src)

An abstract adapter class for receiving bound property events.

Methods defined in this class are empty. This class exists as as convenience for creating listener objects.


Constructor Summary
BoundPropertyAdapter()
           
 
Method Summary
 void propertyBound(PropertyMap (src)  map)
          Notifies that this listener was bound to a property.
 void propertyUnbound(PropertyMap (src)  map)
          Notifies that this listener was unbound from a property.
 
Methods inherited from class org.jboss.util.property.PropertyAdapter (src)
propertyAdded, propertyChanged, propertyRemoved
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.jboss.util.property.BoundPropertyListener (src)
getPropertyName
 
Methods inherited from interface org.jboss.util.property.PropertyListener (src)
propertyAdded, propertyChanged, propertyRemoved
 

Constructor Detail

BoundPropertyAdapter

public BoundPropertyAdapter()
Method Detail

propertyBound

public void propertyBound(PropertyMap (src)  map)
Notifies that this listener was bound to a property.

Specified by:
propertyBound in interface BoundPropertyListener (src)
Parameters:
map - PropertyMap which contains property bound to.

propertyUnbound

public void propertyUnbound(PropertyMap (src)  map)
Notifies that this listener was unbound from a property.

Specified by:
propertyUnbound in interface BoundPropertyListener (src)
Parameters:
map - PropertyMap which contains property bound to.