org.jbeans
Interface PropertyListener
- All Superinterfaces:
- EventListener
- All Known Implementing Classes:
- PropertyListenerAdapter
- public interface PropertyListener
- extends EventListener
This interface is an event listener for property events. These
events take place when a BeanProperty or similar class is
retrieving or updating (setting) a properties value.
The different types of events that this listener watchs are:
Property retrieval
Property setting/changing
- Author:
- Brian Pontarelli
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 |
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
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