}
private final JMenuItem createRecentDescFileItem(int num, File file) {
String fileShortName = file.getName();
JMenuItem item = new JMenuItem(num + " " + fileShortName, getMnemonic(num));
item.addActionListener(new LoadRecentDescFileEventHandler(this, file.getAbsolutePath()));
item.setToolTipText(file.getAbsolutePath());
return item;
}