helpB.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String param = (String) e.getActionCommand();
if (param.equals("Help")) {
TreeHelp help = new TreeHelp(thisBootGui, "Boot Help",
"help/BOOTGUI.html");
// must insert the listener for the close action
help.setVisible(true);
help.requestFocus();
}
}
});
buttonPanel.add(helpB);
topPanel.add(buttonPanel);