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 void
propertyAdded(PropertyEvent event)
Notifies that a property was added.void
propertyChanged(PropertyEvent event)
Notifies that a property has changed.void
propertyRemoved(PropertyEvent event)
Notifies that a property was removed.
-
-
-
Method Detail
-
propertyAdded
public void propertyAdded(PropertyEvent event)
Notifies that a property was added.- Specified by:
propertyAdded
in interfacePropertyListener
- Parameters:
event
- Property event.
-
propertyRemoved
public void propertyRemoved(PropertyEvent event)
Notifies that a property was removed.- Specified by:
propertyRemoved
in interfacePropertyListener
- Parameters:
event
- Property event.
-
propertyChanged
public void propertyChanged(PropertyEvent event)
Notifies that a property has changed.- Specified by:
propertyChanged
in interfacePropertyListener
- Parameters:
event
- Property event.
-
-