Lists
A list is a graphical component that presents the user with choices. Lists typically display several items at a time, allowing the user to make either a single selection or multiple selections. In the event that the inventory of the list exceeds the space available to the component, the list is often coupled with a scrollpane to allow navigation through the entire set of choices.
The Swing JList component allows elements to be any Java class capable of being rendered—which is to say anything at all because you can supply your own renderer. This offers a wide range of flexibility; list components can be as simple or as complex as the programmer’s needs dictate.
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class SimpleList extends JPanel { String label[] = { "Zero", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten", "Eleven" }; JList list; public SimpleList() { this.setLayout(new BorderLayout()); list = new JList(label); JScrollPane pane = new JScrollPane(list); JButton button = new JButton("Print"); button.addActionListener(new PrintListener()); add(pane, BorderLayout.CENTER); add(button, BorderLayout.SOUTH); } public static void main(String s[]) { JFrame frame = new JFrame("Simple List Example"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setContentPane(new SimpleList()); frame.setSize(250, 200); frame.setVisible(true); } // An inner class to respond to clicks of the Print button class PrintListener implements ActionListener { public void actionPerformed(ActionEvent e) { int selected[] = list.getSelectedIndices(); System.out.println("Selected Elements: "); for (int i = 0; i < selected.length; i++) { String element = (String) list.getModel().getElementAt( selected[i]); System.out.println(" " + element); } } } }