Package org.jboss.util.property
Class PropertyAdapter
- java.lang.Object
-
- org.jboss.util.property.PropertyAdapter
-
- All Implemented Interfaces:
java.util.EventListener,PropertyListener
- Direct Known Subclasses:
BoundPropertyAdapter
public abstract class PropertyAdapter extends java.lang.Object implements PropertyListener
An abstract adapter class for receving property events.Methods defined in this class are empty. This class exists as as convenience for creating listener objects.
- Version:
- $Revision$
-
-
Constructor Summary
Constructors Constructor Description PropertyAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidpropertyAdded(PropertyEvent event)Notifies that a property was added.voidpropertyChanged(PropertyEvent event)Notifies that a property has changed.voidpropertyRemoved(PropertyEvent event)Notifies that a property was removed.
-
-
-
Method Detail
-
propertyAdded
public void propertyAdded(PropertyEvent event)
Notifies that a property was added.- Specified by:
propertyAddedin interfacePropertyListener- Parameters:
event- Property event.
-
propertyRemoved
public void propertyRemoved(PropertyEvent event)
Notifies that a property was removed.- Specified by:
propertyRemovedin interfacePropertyListener- Parameters:
event- Property event.
-
propertyChanged
public void propertyChanged(PropertyEvent event)
Notifies that a property has changed.- Specified by:
propertyChangedin interfacePropertyListener- Parameters:
event- Property event.
-
-