private String chooseTaskList() {
String[] taskListNames = EVTaskList.findTaskLists(dashboardContext
.getData(), false, true);
String[] taskListDisplayNames = getDisplayNames(taskListNames);
JList taskLists = new JList(taskListDisplayNames);
new JOptionPaneClickHandler().install(taskLists);
JScrollPane scrollPane = new JScrollPane(taskLists);
scrollPane.setPreferredSize(new Dimension(200, 200));
Object message = new Object[] {
resources.getString("Add.Select_Schedule_Instructions"),
scrollPane };