Skip to content

Instantly share code, notes, and snippets.

@Munken
Created January 12, 2014 13:39
Show Gist options
  • Save Munken/8384702 to your computer and use it in GitHub Desktop.
Save Munken/8384702 to your computer and use it in GitHub Desktop.
ExamDetails List
Form f = showForm("ExamDetails", null);
f.setLayout(new BorderLayout());
DefaultListModel<StringPair> model = new DefaultListModel<StringPair>(exam.getDetails().getDetails());
List lst = new List(model);
lst.setRenderer(new StringPairCellRenderer());
f.addComponent(BorderLayout.CENTER, lst);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment