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 ucar.unidata.idv.flythrough.Flythrough.java

/**
 *
 * @author IDV development team
 */

public class Flythrough extends SharableImpl implements PropertyChangeListener, ImageObserver {

From source file BeanContainer.java

    class BeanEditor extends JFrame implements PropertyChangeListener {
        protected Component m_bean;
        protected JTable m_table;
        protected PropertyTableData m_data;

        public BeanEditor(Component bean) {

From source file org.openmicroscopy.shoola.agents.treeviewer.view.TreeViewerControl.java

/** 
 * The {@link TreeViewer}'s controller. 
 *
 * @author  Jean-Marie Burel     
 *             <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
 * @version 2.2

From source file FileChooserDemo2.java

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

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

From source file org.talend.designer.core.ui.editor.properties.controllers.AbstractElementPropertySectionController.java

/**
 * DOC yzhang class global comment. Detailled comment <br/>
 * 
 * $Id: talend-code-templates.xml 1 2006-09-29 17:06:40 +0000 (?, 29  2006) yzhang $
 * 
 */

From source file org.sleuthkit.autopsy.experimental.autoingest.AutoIngestManager.java

/**
 * An auto ingest manager is responsible for processing auto ingest jobs defined
 * by manifest files that can be added to any level of a designated input
 * directory tree.
 * <p>
 * Each manifest file specifies a co-located data source and a case to which the

From source file ListCutPaste.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 org.talend.designer.mapper.ui.visualmap.table.DataMapTableView.java

/**
 * DOC amaumont class global comment. Detailled comment <br/>
 * 
 * $Id$
 * 
 */

From source file DragDropTreeExample.java

class FileTreeDropTarget implements DropTargetListener, PropertyChangeListener {
    public FileTreeDropTarget(FileTree tree) {
        this.tree = tree;

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

From source file edu.ku.brc.af.ui.forms.FormViewObj.java

/**
 * This implements a Form and is "owed" by a MultiView.<br>
 * <br>
 * Implementation of the Viewable interface for the ui and this derived class is for handling Form's Only (not tables).<br>
 * <br>
 * Implements ViewBuilderIFace which the ViewFactory uses while processing the rows, it calls methods in this interface