Creates a new listener proxy that associates a listener with a property name.parampropertyName the name of the associated property.paramlistener the listener to delegate incoming events to. super(listener); this.propertyName = propertyName;
super(listener); this.propertyName = propertyName;
Returns the name of the property associated with this listener proxy.returnthe name of the associated property. return propertyName;
return propertyName;
PropertyChangeListener listener = (PropertyChangeListener) getListener(); listener.propertyChange(event);