Example usage for java.beans PropertyChangeSupport subclass-usage

List of usage examples for java.beans PropertyChangeSupport subclass-usage

Introduction

In this page you can find the example usage for java.beans PropertyChangeSupport subclass-usage.

Usage

From source file State.java

/**
 *
 * @author zhenhai
 */
public class State extends PropertyChangeSupport {

From source file net.chaosserver.timelord.util.PropertyChangeSupport.java

/**
 * Extension of the standard PropertyChangeListener.  The value add
 * of this version is that when an object goes over the max listeners
 * the listener will start logging warning messages.  This greatly
 * reduces the chances of causing memory leaks on the property
 * change listeners.

From source file picocash.model.impl.Account.java

/**
 *
 * @author wusel
 */
public final class Account extends PropertyChangeSupport implements NameAndIconable, TransactionListener {

From source file org.jdesktop.swingworker.AccumulativeRunnable.java

/**
 * This subclass of {@code java.beans.PropertyChangeSupport} is almost
 * identical in functionality. The only difference is if constructed with 
 * {@code SwingPropertyChangeSupport(sourceBean, true)} it ensures
 * listeners are only ever notified on the <i>Event Dispatch Thread</i>.
 *

From source file SwingWorker.java

/**
 * This subclass of {@code java.beans.PropertyChangeSupport} is almost
 * identical in functionality. The only difference is if constructed with 
 * {@code SwingPropertyChangeSupport(sourceBean, true)} it ensures
 * listeners are only ever notified on the <i>Event Dispatch Thread</i>.
 *