List of usage examples for java.beans PropertyChangeListener interface-usage
From source file org.openmicroscopy.shoola.env.ui.UserNotifierImpl.java
/**
* Implements the {@link UserNotifier} interface.
*
* @author Jean-Marie Burel <a
* href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
* @author Andrea Falconi <a
From source file org.openmicroscopy.shoola.agents.util.SelectionWizard.java
/**
* A modal dialog to select collection of objects.
*
* @author Jean-Marie Burel
* <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
* @author Donald MacDonald
From source file edu.ucla.stat.SOCR.analyses.gui.LogisticRegression.java
/** this class is for Logistic Regression only. */ public class LogisticRegression extends Analysis implements PropertyChangeListener { private double betas[]; public String[][] example = new String[1][1]; // the example data public String[] columnNames = new String[1];
From source file edu.ucla.stat.SOCR.analyses.gui.PrincipalComponentAnalysis.java
/** this class is for Logistic Regression only. */ public class PrincipalComponentAnalysis extends Analysis implements PropertyChangeListener { private int dataRow = 0; // added private int dataColumn = 0; // added
From source file net.sf.maltcms.chromaui.charts.overlay.Peak1DOverlay.java
/** * * @author Nils Hoffmann */ public class Peak1DOverlay extends AbstractChartOverlay implements ChartOverlay, PropertyChangeListener, LookupListener {
From source file com.github.fritaly.dualcommander.DualCommander.java
public class DualCommander extends JFrame implements ChangeListener, WindowListener, KeyListener, PropertyChangeListener, FocusListener { private static final long serialVersionUID = 5445919782222373150L; // TODO Add support for Ctrl+C / Ctrl-X / Ctrl-V with the system clipboard
From source file edu.ucla.stat.SOCR.analyses.gui.Survival.java
public class Survival extends Analysis implements PropertyChangeListener { //public JTabbedPane tabbedPanelContainer; private JToolBar toolBar; private Frame frame; protected JLabel timeLabel = new JLabel("TIME");
From source file org.fhcrc.cpl.viewer.gui.FeatureSelectionFrame.java
public class FeatureSelectionFrame extends AbstractAction implements PropertyChangeListener { protected static Logger _log = Logger.getLogger(FeatureSelectionFrame.class); public FeatureSelectionDialog dialog = null; public void propertyChange(PropertyChangeEvent event) {
From source file org.cubictest.ui.sections.ParameterisationSection.java
public class ParameterisationSection extends AbstractPropertySection implements PropertyChangeListener { private Test test; private Label fileLabel; private Text fileName; private Button chooseFileButton;
From source file edu.ucla.stat.SOCR.chart.SuperPieChart.java
/** * A simple demonstration application showing how to create a pie chart using * data from a {@link DefaultPieDataset}. */ public class SuperPieChart extends Chart implements PropertyChangeListener {