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 dnd.TransferActionListener.java

/**
 * A class that tracks the focused component.  This is necessary
 * to delegate the menu cut/copy/paste commands to the right
 * component.  An instance of this class is listening and
 * when the user fires one of these commands, it calls the
 * appropriate action on the currently focused component.

From source file net.sf.maltcms.chromaui.charts.overlay.Peak2DOverlayChildFactory.java

/**
 *
 * @author Nils Hoffmann
 */
public final class Peak2DOverlayChildFactory extends ChildFactory<IPeakAnnotationDescriptor>
        implements OverlayChangeListener, PropertyChangeListener {

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

/**
 * A simple demonstration application showing how to create a polar chart.
 */
public class PolarChartDemo1 extends SuperXYChart implements PropertyChangeListener {

    public void doTest() {

From source file org.rifidi.ui.ide.views.tagview.TagView.java

/**
 * 
 * This is the TagView displaying the new created tags in a table. It's also a
 * source for the drag&drop functionality to the AntennaView.
 * 
 * @author Andreas Huebner - andreas@pramari.com

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

/**
 * A rotating 3D pie chart.
 */
public class PieChart3DDemo2 extends SuperPieChart implements PropertyChangeListener {

    public void init() {

From source file org.yccheok.jstock.gui.analysis.OperatorFigure.java

/**
 *
 * @author yccheok
 */
public abstract class OperatorFigure extends GraphicalCompositeFigure implements java.beans.PropertyChangeListener {

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

/**
 * A bubble chart demo.
 */
public class BubbleChartDemo1 extends SuperBubbleChart implements PropertyChangeListener {

    protected XYZDataset createDataset(boolean isDemo) {

From source file components.ImagePreview.java

public class ImagePreview extends JComponent implements PropertyChangeListener {
    ImageIcon thumbnail = null;
    File file = null;

    public ImagePreview(JFileChooser fc) {
        setPreferredSize(new Dimension(100, 50));

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

/**
 * This line chart demo shows many series, each displaying a different shape.
 */
public class LineChartDemo3 extends SuperXYChart implements PropertyChangeListener {
    public void doTest() {
        JFreeChart chart;

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

/**
 * A simple demonstration application showing how to create a "statistical" 
 * bar chart using data from a {@link CategoryDataset}.
 */
public class StatisticalBarChartDemo1 extends SuperCategoryChart_Stat implements PropertyChangeListener {