manualItem.addActionListener(new ManualHandler(this));
helpMenu.add(manualItem);
JMenuItem helpInfoItem = new JMenuItem("Help", KeyEvent.VK_H);
helpInfoItem.addActionListener(new HelpHandler(this));
helpMenu.add(helpInfoItem);
helpMenu.addSeparator();
JMenuItem aboutItem = new JMenuItem("About CVD", KeyEvent.VK_A);
aboutItem.addActionListener(new AboutHandler(this));
helpMenu.add(aboutItem);
JMenuItem aboutUimaItem = new JMenuItem("About UIMA", KeyEvent.VK_U);
aboutUimaItem.addActionListener(new AboutUimaHandler(this));