This patch helps writing more stable code.
Eg. instead of writing something like:
- DefaultListModel model = new DefaultListModel();
- model.addElement("test");
- JList list = new JList(model);
- ...
- String value = (String) list.getSelectedValue(); // unchecked cast
- Foo foo = (Foo) list.getSelectedValue(); // cast will fail at runtime
with this patch you can write now:
- DefaultListModel<String> model = new DefaultListModel<String>();
- model.addElement("test");
- JList<String> list = new JList<String>(model);
- ...
- String value = list.getSelectedValue();
- Foo foo = list.getSelectedValue(); // compile time error
Note that:
JList.getSelectedValues(): Object[] has been deprecated and replaced with:
JList.getSelectedValuesList(): List<E>
Have a look at the jtreg tests to see more examples.
If you're interested in the future of Swing, join the discussions in the OpenJDK Swing mailing list.