No examples for this method. 
     
 
     
      Frequently called with: [Clear]  
     
 
      
    
 
     
     
     -1 
    
 
     
     
   | java.lang.Object | ||
| ↳ | java.util.EventListenerProxy | |
| ↳ | java.beans.PropertyChangeListenerProxy | |
The implementation of this listener proxy just delegates the received events to its listener.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  | 
           Creates a new listener proxy that associates a listener with a property name.
           | ||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  | 
           Returns the name of the property associated with this listener proxy.
           | ||||||||||
|  | 
           The source bean calls this method when an event is raised.
           | ||||||||||
| [Expand] 
           Inherited Methods
           | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class java.util.EventListenerProxy | |||||||||||
|  From class java.lang.Object | |||||||||||
|  From interface java.beans.PropertyChangeListener | |||||||||||
Creates a new listener proxy that associates a listener with a property name.
| propertyName | the name of the associated property. | 
|---|---|
| listener | the listener to delegate incoming events to. | 
Returns the name of the property associated with this listener proxy.
The source bean calls this method when an event is raised.
| event | the PropertyChangeEventobject which contains the name and the old and new value of the property that has changed. | 
|---|