List of usage examples for java.beans PropertyChangeListener interface-usage
From source file edu.ucla.stat.SOCR.chart.demo.LayeredBarChartDemo1.java
/** * A simple demonstration application showing how to create a layered bar chart. */ public class LayeredBarChartDemo1 extends SuperCategoryChart_Bar implements PropertyChangeListener { /** * sample code showing how to create a chart using ChartGenerator_JTable class
From source file edu.ucla.stat.SOCR.chart.demo.LayeredBarChartDemo2.java
/** * A simple demonstration application showing how to create a layered bar chart. */ public class LayeredBarChartDemo2 extends SuperCategoryChart_Bar implements PropertyChangeListener { /** * sample code showing how to create a chart using ChartGenerator_JTable class
From source file edu.ucla.stat.SOCR.chart.demo.CrosshairDemo3.java
/** * A crosshair demo. */ public class CrosshairDemo3 extends SuperXYChart_Time implements PropertyChangeListener { /** * sample code showing how to create a chart using ChartGenerator_JTable class
From source file org.eclipse.php.composer.ui.editor.composer.AuthorSection.java
public class AuthorSection extends TableSection implements PropertyChangeListener { private TableViewer authorViewer; private IAction addAction; private IAction editAction;
From source file FormattedTextFieldDemo.java
/** * FormattedTextFieldDemo.java requires no other files. * * It implements a mortgage calculator that uses four JFormattedTextFields. */ public class FormattedTextFieldDemo extends JPanel implements PropertyChangeListener {
From source file edu.ucla.stat.SOCR.chart.demo.BarChartDemo9.java
/** * A bar chart that uses a custom renderer to display different colors within a * single series. The colors use GradientPaint and the chart is animated. */ public class BarChartDemo9 extends SuperCategoryChart_Bar implements PropertyChangeListener { /**
From source file wsattacker.sso.openid.attacker.server.OpenIdServer.java
public class OpenIdServer extends AbstractBean implements PropertyChangeListener { private static final Log LOG = LogFactory.getLog(OpenIdServer.class); public static final String PROP_STATUS = "status"; public static final String PROP_STOREDASSOCIATIONS = "storedAssociations"; //public static final String PROP_PROCESSOR = "processor";
From source file de.xirp.plugin.ViewerBase.java
/**
* Base class for UI implementations which are split from the
* underlying data. This class handles the synchronization between UI
* and data with different class types almost automatically.
*
* @author Rabea Gransberger
From source file org.jspresso.framework.application.model.BeanModule.java
/**
* This type of module keeps a reference on a single bean. There is no
* assumption made on whether this bean is actually a persistent entity or any
* other type of java bean.
* <p>
* Bean modules must have their referenced bean initialized somehow. So it's
From source file ProgressMonitorDemo.java
public class ProgressMonitorDemo extends JPanel implements ActionListener, PropertyChangeListener { private ProgressMonitor progressMonitor; private JButton startButton; private JTextArea taskOutput; private Task task;