}
};
f.setCellRenderer(new DefaultListDecorRenderer());
f.setVisibleRowCount(Math.min(20, model.getSize() + 2));
setPrototypeCellValue(f, model);
KongaList list = f.newList(model);
list.setTransient(isTransient);
list.setDefaultAction(selectionAction);
list.setSelectionMode(ListSelectionMode.SINGLE_SELECTION);
list.addSelectionListener(new SelectedTokenListener());
return list;