List of usage examples for java.beans PropertyChangeListener interface-usage
From source file org.jcurl.core.model.CurveManager.java
/**
* Bring it all together and trigger computation.
*
* @author <a href="mailto:jcurl@gmx.net">M. Rohrmoser </a>
* @version $Id$
*/
From source file edu.ucla.stat.SOCR.chart.demo.WaterfallChartDemo1.java
/** * A sample waterfall chart. */ public class WaterfallChartDemo1 extends SuperCategoryChart_Bar implements PropertyChangeListener { public void doTest() {
From source file ds.monte.carlo.Application.java
/** * * @author Carmen */ public class Application extends javax.swing.JFrame implements PropertyChangeListener { /**
From source file edu.ucla.stat.SOCR.chart.SuperXYChart_Time.java
/** * A simple demonstration application showing how to create a Line chart. */ public class SuperXYChart_Time extends SuperXYChart implements PropertyChangeListener { public void init() {
From source file components.FormatterFactoryDemo.java
/** * FormatterFactoryDemo.java requires no other files. */ public class FormatterFactoryDemo extends JPanel implements PropertyChangeListener { //Values for the text fields private double amount = 100000;
From source file edu.ucla.stat.SOCR.chart.demo.CrosshairDemo1.java
/** * An example of a crosshair being controlled by an external UI component. */ public class CrosshairDemo1 extends SuperXYChart_Time implements PropertyChangeListener { /** * sample code showing how to create a chart using ChartGenerator_JTable class
From source file edu.ucla.stat.SOCR.chart.demo.QQData2DataDemo.java
/** * A simple demonstration application showing how to create a line chart using * data from an {@link XYDataset}. * */ public class QQData2DataDemo extends SuperXYChart_QQ_DD implements PropertyChangeListener {
From source file edu.ucla.stat.SOCR.chart.demo.BarChart3DDemo1.java
/** * A simple demonstration application showing how to create a vertical 3D bar * chart using data from a {@link CategoryDataset}. */ public class BarChart3DDemo1 extends SuperCategoryChart_Bar implements PropertyChangeListener {
From source file edu.ucla.stat.SOCR.chart.demo.BarChart3DDemo2.java
/** * A simple demonstration application showing how to create a horizontal 3D bar chart using data * from a {@link CategoryDataset}. */ public class BarChart3DDemo2 extends SuperCategoryChart_Bar3D implements PropertyChangeListener {
From source file org.ut.biolab.medsavant.client.util.VisibleMedSavantWorker.java
public abstract class VisibleMedSavantWorker<T> extends MedSavantWorker<T> implements PropertyChangeListener { private static final String THREAD_INTERRUPTED_LABEL = "CANCELLED"; private static final String THREAD_EXCEPTION_LABEL = "FAILED"; private static final Log LOG = LogFactory.getLog(VisibleMedSavantWorker.class);