List of usage examples for javax.swing.event ListSelectionListener interface-usage
From source file net.sf.jhylafax.addressbook.AddressBook.java
public class AddressBook extends JFrame implements ListSelectionListener, LocaleChangeListener { private final static Log logger = LogFactory.getLog(AddressBook.class); private static final String[] DEFAULT_CONTACT_TABLE_COLUMNS = new String[] { "displayName", "company", "faxNumber" };
From source file gdsc.smlm.ij.plugins.SpotAnalysis.java
/** * Allows analysis of the signal and on/off times for fixed fluorophore spots in an image stack. */ public class SpotAnalysis extends PlugInFrame implements ActionListener, ItemListener, Runnable, ImageListener, ListSelectionListener, KeyListener { private static final long serialVersionUID = 1L;
From source file net.sourceforge.doddle_owl.ui.InputDocumentSelectionPanel.java
/** * @author Takeshi Morita */ public class InputDocumentSelectionPanel extends JPanel implements ListSelectionListener, ActionListener { private Set<String> stopWordSet;
From source file dk.dma.epd.common.prototype.gui.route.RoutePropertiesDialogCommon.java
/** * Dialog used for viewing and editing route properties */ public class RoutePropertiesDialogCommon extends JDialog implements ActionListener, PropertyChangeListener, ListSelectionListener {
From source file org.isatools.isacreator.gui.formelements.SubForm.java
/**
* SubForm
*
* @author Eamonn Maguire
* @date Jan 11, 2010
*/
From source file bio.gcat.gui.BDATool.java
public class BDATool extends JFrame implements ActionListener, ListDataListener, ListSelectionListener { private static final long serialVersionUID = 1l; public static final String BDA_EXTENSION = "gcatb"; public static final FileNameExtensionFilter BDA_EXTENSION_FILTER = new FileNameExtensionFilter( "Binary Dichotomic Algorithm (*." + BDA_EXTENSION + ")", BDA_EXTENSION);
From source file de.tor.tribes.ui.views.DSWorkbenchReTimerFrame.java
/** * @author Torridity */ public class DSWorkbenchReTimerFrame extends AbstractDSWorkbenchFrame implements ListSelectionListener, ActionListener {
From source file net.sf.firemox.DeckBuilder.java
/**
* This class is a deck builder compatible with Firemox deck format. Can
* also export/import other formats.
*
* @author <a href="mailto:fabdouglas@users.sourceforge.net">Fabrice Daugan </a>
* @author <a href="mailto:goldeneyemdk@users.sourceforge.net">Sebastien Genete
From source file edu.ku.brc.af.ui.forms.validation.ValComboBoxFromQuery.java
/**
* This is a Validated Auto Complete combobox that is filled from a database table. It implements GetSetValueFace
* and the set and get methods expect (and return) the Hibernate Object for the the table. When the user types
* into the editable combobox it performs a case insensitive search against a single field. The display can be
* constructed from multiple columns in the database. It is highly recommended that the first column be the same column
* that is being searched. It is is unclear whether showing more columns than they can search on is a problem, this may
From source file org.isatools.isacreator.spreadsheet.Spreadsheet.java
/**
* Spreadsheet class.
* Provides the functionality of a spreadsheet including the JTable, Listeners, Addition of Cell Editors, and so forth. Spreadsheet
* is created automatically from Table Reference Objects created by the ISAcreator configuration tool!
*
* @author Eamonn Maguire