Add a scroll bar to a JList?

java, swing

Solution

Put your `JList` in a `JScrollPane`

JScrollPane scrollPane = new JScrollPane();
JList list = new JList();
scrollPane.setViewportView(list);

Problem

How do you add a JList to a JScrollPane ?

Original source

Related problems