List of usage examples for javax.swing.event ListSelectionListener interface-usage
From source file FontDialog.java
public class FontDialog extends JFrame implements ActionListener, ListSelectionListener { private JList style = new JList(new String[] { "Serif", "SansSerif", "Monospaced", "Dialog", "DialogInput" }); private JCheckBox bold = new JCheckBox("Bold"); private JCheckBox italic = new JCheckBox("Italic");
From source file Main.java
public class Main extends JPanel implements ListSelectionListener { JList list; DefaultListModel listModel = new DefaultListModel(); static final String addCommand = "Add"; static final String deleteCommand = "Delete"; JButton fireButton;
From source file SelectionMonitor.java
class RadioUpdater implements ListSelectionListener { public void valueChanged(ListSelectionEvent e) { if ((!e.getValueIsAdjusting()) || (e.getFirstIndex() == -1)) return; for (int i = e.getFirstIndex(); i <= e.getLastIndex(); i++) {
From source file ListInput.java
public class ListInput extends JPanel implements ListSelectionListener, ActionListener { protected JLabel label; protected JTextField textfield; protected JList list;
From source file Main.java
public class Main 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 pcgen.gui2.tabs.spells.SpellInfoHandler.java
class SpellInfoHandler implements ListSelectionListener { private CharacterFacade character; private final JTreeViewTable<?> availableTable; private final JTreeViewTable<?> selectedTable; private final InfoPane spellsPane;
From source file org.owasp.jbrofuzz.payloads.PayloadsRowListener.java
final class PayloadsRowListener implements ListSelectionListener { /** * */ private final PayloadsPanel payloadsPanel;
From source file net.sf.maltcms.chromaui.charts.events.PeakListSelectionListener.java
/** * * @author Nils Hoffmann */ public class PeakListSelectionListener implements XYAnnotationEventSource, ListSelectionListener {
From source file pl.otros.vfs.browser.preview.PreviewListener.java
/** */ public class PreviewListener implements ListSelectionListener { private static final String KB = "kB"; private static final byte[] EMPTY_BYTE_ARRAY = new byte[0];
From source file com.intuit.tank.tools.debugger.VariableDialog.java
/**
* StepDialog
*
* @author dangleton
*
*/