results = new JList();
results.setSelectionMode(DefaultListSelectionModel.SINGLE_SELECTION);
// results.setVisibleRowCount(15);
resultsPane = new JScrollPane(results);
if (Environment.isNewLook()) // The PLAF can override the custom renderer. This avoids that
results.setUI(new BasicListUI());
match = new JTextField();
match.setToolTipText(Messages.getString("LookupDialog.EnterPartOfTheName")); //$NON-NLS-1$
find = new JButton(Messages.getString("LookupDialog.Find")); //$NON-NLS-1$
find.addActionListener(new ActionListener() {