Monday, November 23, 2009

News - Swing-Generics (OpenJDK): JList patch commited

Great news from the OpenJDK swing-generics project: my patch to "generify" JList, along with AbstractListModel, DefaultListCellRenderer, DefaultListModel, ListCellRenderer and ListModel, has been commited to the OpenJDK/ Swing repository!

This patch helps writing more stable code.

Eg. instead of writing something like:
  1. DefaultListModel model = new DefaultListModel();  
  2. model.addElement("test");  
  3. JList list = new JList(model);  
  4. ...  
  5. String value = (String) list.getSelectedValue(); // unchecked cast  
  6. Foo foo = (Foo) list.getSelectedValue(); // cast will fail at runtime  


with this patch you can write now:
  1. DefaultListModel<String> model = new DefaultListModel<String>();  
  2. model.addElement("test");  
  3. JList<String> list = new JList<String>(model);  
  4. ...  
  5. String value = list.getSelectedValue();  
  6. 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.