org.jbeans
Class PropertyListenerAdapter

java.lang.Object
  |
  +--org.jbeans.PropertyListenerAdapter
All Implemented Interfaces:
EventListener, PropertyListener

public abstract class PropertyListenerAdapter
extends Object
implements PropertyListener

This class is a blank implementation of the PropertyListener interface It is abstract and implements every method of the listener with an empty implementation

Author:
Brian Pontarelli

Constructor Summary
PropertyListenerAdapter()
           
 
Method Summary
 void handleGet(PropertyEvent event)
          This handle method is called when the property value is being retrieved by calling the getter for the property
 void handleSet(PropertyEvent event)
          This handle method is called when the property value is being changed by calling the setter for the property
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PropertyListenerAdapter

public PropertyListenerAdapter()
Method Detail

handleGet

public void handleGet(PropertyEvent event)
This handle method is called when the property value is being retrieved by calling the getter for the property
Specified by:
handleGet in interface PropertyListener

handleSet

public void handleSet(PropertyEvent event)
This handle method is called when the property value is being changed by calling the setter for the property
Specified by:
handleSet in interface PropertyListener