List of usage examples for java.beans PropertyChangeListener interface-usage
From source file components.ProgressMonitorDemo.java
public class ProgressMonitorDemo extends JPanel implements ActionListener, PropertyChangeListener { private ProgressMonitor progressMonitor; private JButton startButton; private JTextArea taskOutput; private Task task;
From source file components.ProgressBarDemo.java
public class ProgressBarDemo extends JPanel implements ActionListener, PropertyChangeListener { private JProgressBar progressBar; private JButton startButton; private JTextArea taskOutput; private Task task;
From source file edu.ucla.stat.SOCR.chart.demo.PieChart3DDemo3.java
/** * A pie chart with a custom label generator. */ public class PieChart3DDemo3 extends SuperPieChart implements PropertyChangeListener { public void init() {
From source file components.ProgressBarDemo2.java
public class ProgressBarDemo2 extends JPanel implements ActionListener, PropertyChangeListener { private JProgressBar progressBar; private JButton startButton; private JTextArea taskOutput; private Task task;
From source file edu.ucla.stat.SOCR.chart.demo.StackedXYAreaChartDemo1.java
/** * This demo shows the creation of a stacked XY area chart. * */ public class StackedXYAreaChartDemo1 extends SuperAreaChart_XY implements PropertyChangeListener {
From source file edu.ucla.stat.SOCR.chart.SuperNormalDistributionChart.java
/** * A simple demonstration application showing how to create a normal distribution chart. */ public class SuperNormalDistributionChart extends SuperXYChart implements PropertyChangeListener { public void init() {
From source file net.sf.maltcms.chromaui.charts.overlay.Peak1DOverlayChildFactory.java
/** * * @author Nils Hoffmann */ public final class Peak1DOverlayChildFactory extends ChildFactory<IPeakAnnotationDescriptor> implements OverlayChangeListener, PropertyChangeListener {
From source file org.rifidi.designer.entities.databinding.ObservableTreeContentProvider.java
/**
* This TreeContentProvider takes advantage of eclipse databinding. An object
* that is given to this contentprovider can use annotations to tell the
* contentprovider which properties/collections to monitor for changes.
*
* @see MonitoredProperties
From source file org.jcurl.demo.tactics.CurlerSwingBean.java
/** * @author <a href="mailto:m@jcurl.org">M. Rohrmoser </a> * @version $Id$ */ public class CurlerSwingBean extends JComponent implements HasChanger, PropertyChangeListener, ChangeListener, ItemListener {
From source file blue.mixer.EffectsChain.java
public class EffectsChain implements Serializable, ListModel, PropertyChangeListener { private ArrayList effects = new ArrayList(); private transient Vector listeners = null; private transient Vector automatableCollectionListeners = null;