Java java.beans PropertyChangeSupport fields, constructors, methods, implement or subclass

Example usage for Java java.beans PropertyChangeSupport fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.beans PropertyChangeSupport.

The text is from its open source code.

Subclass

java.beans.PropertyChangeSupport has subclasses.
Click this link to see all its subclasses.

Constructor

PropertyChangeSupport(Object sourceBean)
Constructs a PropertyChangeSupport object.

Method

voidaddPropertyChangeListener(PropertyChangeListener listener)
Add a PropertyChangeListener to the listener list.
voidfirePropertyChange(String propertyName, Object oldValue, Object newValue)
Reports a bound property update to listeners that have been registered to track updates of all properties or a property with the specified name.
voidfirePropertyChange(String propertyName, int oldValue, int newValue)
Reports an integer bound property update to listeners that have been registered to track updates of all properties or a property with the specified name.
voidfirePropertyChange(String propertyName, boolean oldValue, boolean newValue)
Reports a boolean bound property update to listeners that have been registered to track updates of all properties or a property with the specified name.
voidremovePropertyChangeListener(PropertyChangeListener listener)
Remove a PropertyChangeListener from the listener list.