* Invoked when an action occurs.
*/
public void actionPerformed(final ActionEvent e)
{
final FileFilter[] fileFilters =
{new FilesystemFilter(new String[]{".xls", ".xlsx"}, // NON-NLS
Messages.getString("TableDataSourceEditor.ExcelFileDescription"), true)};
final CommonFileChooser fileChooser = FileChooserService.getInstance().getFileChooser("xls");
fileChooser.setFilters(fileFilters);
if (fileChooser.showDialog(TableDataSourceEditor.this, JFileChooser.OPEN_DIALOG) == false)