Example usage for java.beans PropertyChangeListener interface-usage

List of usage examples for java.beans PropertyChangeListener interface-usage

Introduction

In this page you can find the example usage for java.beans PropertyChangeListener interface-usage.

Usage

From source file edu.ucla.stat.SOCR.chart.demo.LineChartDemo5.java

/**
 * A line chart demo showing the use of a custom drawing supplier.
 */
public class LineChartDemo5 extends SuperCategoryChart implements PropertyChangeListener {

    /**

From source file de.bstreit.java.springaop.test.observablebean.PropertyChangeSupportTest.java

@Configuration
@Import(EnableObservableBeans.class)
@ComponentScan()
@ContextConfiguration(classes = { PropertyChangeSupportTest.class })
@RunWith(SpringJUnit4ClassRunner.class)
public class PropertyChangeSupportTest implements PropertyChangeListener {

From source file ca.sqlpower.enterprise.DataSourceCollectionUpdater.java

public abstract class DataSourceCollectionUpdater
        implements DatabaseListChangeListener, PropertyChangeListener, UndoableEditListener {

    protected final ProjectLocation projectLocation;

    /**

From source file edu.harvard.mcz.imagecapture.BulkMediaFrame.java

/**
 * Frame to manage creating BulkMedia files from image files.
 * 
 * @author mole
 *
 */

From source file edu.ucla.stat.SOCR.chart.demo.XYAreaChartDemo2.java

/**
 * A simple demonstration application showing how to create an area chart with a date axis for
 * the domain values.
 */
public class XYAreaChartDemo2 extends SuperXYChart implements PropertyChangeListener {

From source file FormattedTextFieldDemo.java

/**
 * FormattedTextFieldDemo.java is a 1.4 example that
 * requires no other files.
 *
 * It implements a mortgage calculator that uses four
 * JFormattedTextFields.

From source file edu.ucla.stat.SOCR.chart.demo.HistogramChartDemo7.java

/**
 * A sample waterfall chart.
 */
public class HistogramChartDemo7 extends SuperCategoryChart_Bar implements PropertyChangeListener {
    protected String[] raw_x;
    protected double[] raw_y;

From source file edu.ucla.stat.SOCR.analyses.gui.FlignerKilleen.java

public class FlignerKilleen extends Analysis implements PropertyChangeListener {

    public String[][] example = new String[1][1]; // the example data
    public String[] columnNames = new String[1];
    private double[] xData = null;
    private double[][] xDataArray = null;

From source file edu.ucla.stat.SOCR.chart.demo.HistogramChartDemo.java

/**
 * A simple demonstration application showing how to create a bar chart using
 * an {@link XYPlot}.
 */
public class HistogramChartDemo extends SuperHistogramChart implements PropertyChangeListener {

From source file edu.ucla.stat.SOCR.chart.demo.BoxAndWhiskerChartDemo3.java

/**
 * A simple demonstration application showing how to create a box-and-whisker 
 * chart.
 */
public class BoxAndWhiskerChartDemo3 extends SuperBoxAndWhiskerChart_Vertical implements PropertyChangeListener {
    /**