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.PieChart3DDemo1.java

/**
 * A simple demonstration application showing how to create a pie chart using 
 * data from a {@link DefaultPieDataset}.
 */
public class PieChart3DDemo1 extends SuperPieChart implements PropertyChangeListener {

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

/**
 * A simple demonstration application showing how to create a pie chart using 
 * data from a {@link DefaultPieDataset}.  This demo also shows an "exploded" 
 * section in the chart.
 */
public class PieChartDemo2 extends SuperPieChart implements PropertyChangeListener {

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

/**
 * A simple demonstration application showing how to use the 
 * {@link SymbolAxis} class with an {@link XYPlot}.
 */
public class SymbolAxisDemo1 extends SuperXYChart implements PropertyChangeListener {

From source file com.billooms.harppedals.pedals.PedalFragment.java

/**
 * The Fragment that simulates harp pedals.
 * Note that this fragment is always retained (not destroyed on orientation changes).
 *
 * @author Bill Ooms. Copyright 2017 Studio of Bill Ooms. All rights reserved.
 *

From source file EditorDropTarget3.java

public class EditorDropTarget3 implements DropTargetListener, PropertyChangeListener {
    public EditorDropTarget3(JEditorPane pane) {
        this.pane = pane;

        // Listen for changes in the enabled property
        pane.addPropertyChangeListener(this);

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

/**
 * A simple demonstration application showing how to create a pie chart using 
 * data from a {@link DefaultPieDataset}.
 */
public class PieChartDemo1 extends SuperPieChart implements PropertyChangeListener {

From source file hydrograph.ui.graph.controller.CommentBoxEditPart.java

/**
 * 
 * Default implementation for {@link AbstractGraphicalEditPart} and {@link PropertyChangeListener}
 * 
 * CommentBoxEditPart is a controller class for comment box and The documentation here is targeted at subclassing this
 * class. Callers of public API should refer to the interface's documentation.

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

/**
 * Virtual overlay to controll the visibility of all overlays associated to one
 * chromatotogram.
 *
 * @author Nils Hoffmann
 */

From source file wsattacker.plugin.intelligentdos.option.SchemaAnalyzerOption.java

/**
 * @author Christian Altmeier
 */
public class SchemaAnalyzerOption extends AbstractOptionString implements PropertyChangeListener {

    /**

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

/**
 * A simple demonstration application showing how to create a line chart using 
 * data from a {@link CategoryDataset}.
 */
public class LineChartDemo1b extends SuperCategoryChart_vertical implements PropertyChangeListener {