1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| package test;
import java.awt.*;
import java.awt.event.*;
import java.awt.font.*;
import java.awt.geom.*;
import javax.swing.*;
import javax.swing.event.*;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2006</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class TestListSelection extends JPanel implements ListSelectionListener {
public TestListSelection() {
JList list = new JList(new Object[] {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10});
list.addListSelectionListener(this);
setLayout(new BorderLayout());
add(new JScrollPane(list), BorderLayout.CENTER);
}
/** Self-test main.
* @param args Arguments from the command-line.
*/
public static void main(String ...args) {
SwingUtilities.invokeLater(new Runnable() {
/**
* {@inheritDoc}
*/
public void run() {
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new TestListSelection(), BorderLayout.CENTER);
frame.setSize(500, 400);
frame.setVisible(true);
}
});
}
/**
* {@inheritDoc}
*/
public void valueChanged(ListSelectionEvent event) {
System.out.println(event.getValueIsAdjusting() + " [" + event.getFirstIndex() + " " + event.getLastIndex() + "].");
}
} |
Partager