List of usage examples for javax.swing.event ListSelectionListener interface-usage
From source file pcgen.gui2.tabs.skill.SkillTreeViewModel.java
public class SkillTreeViewModel implements TreeViewModel<SkillFacade>, DataView<SkillFacade>, SkillBonusListener, ListSelectionListener { private static final List<? extends DataViewColumn> COLUMNS = Arrays.asList( new DefaultDataViewColumn("in_iskTotal", Integer.class, true), new DefaultDataViewColumn("in_iskModifier", Integer.class, true),
From source file gui.TraitViewerDialog.java
class TraitViewerDialog extends JDialog implements ActionListener, ListSelectionListener { private static final long serialVersionUID = -8305279754268031485L; private TraitFile tFile; private TraitTableModel model; private JTable table; private JButton bClose;
From source file gui.TwopointPWDPanelnonsnp.java
class TwopointPWDPanelnonsnp extends JPanel implements ListSelectionListener { private static final long serialVersionUID = 7990579081732956926L; private OrderedResult order; private JTable markerTable, phaseTable; private PWDTableModel markerModel; private PWDTableModel2 phaseModel;
From source file gui.TwopointPWDPanel.java
class TwopointPWDPanel extends JPanel implements ListSelectionListener { private static final long serialVersionUID = 651804115102524864L; private OrderedResult order; private JTable markerTable, phaseTable; private PWDTableModel markerModel; private PWDTableModel2 phaseModel;
From source file net.sf.jhylafax.AbstractQueuePanel.java
/**
* A generic panel that displays a list of {@link net.sf.jhylafax.fax.FaxJob}
* objects in a table.
*
* @author Steffen Pingel
*/
From source file events.ListDataEventDemo.java
public class ListDataEventDemo extends JPanel implements ListSelectionListener { private JList list; private DefaultListModel listModel; private static final String addString = "Add"; private static final String deleteString = "Delete";
From source file SplitPaneDemo2.java
public class SplitPaneDemo2 extends JFrame implements ListSelectionListener { private JLabel label; public SplitPaneDemo2() { super("SplitPaneDemo2");
From source file ListDemo.java
public class ListDemo extends JPanel implements ListSelectionListener { private JList list; private DefaultListModel listModel; private static final String hireString = "Hire"; private static final String fireString = "Fire";
From source file edu.ku.brc.af.ui.forms.validation.DataChangeNotifier.java
/**
* Implements several listener interfaces and listens for the various types of notifications
* to figure out if the component has changed.
*
* @code_status Complete
*
From source file uk.chromis.pos.promotion.PromotionEditor.java
/** * * @author John */ public class PromotionEditor extends javax.swing.JPanel implements EditorRecord, ListSelectionListener {