} else if (actionCommand.equals("Buttons")) {
(new ButtonTest(this)).show();
} else if (actionCommand.equals("JTable")) {
JTableTest dlg = new JTableTest(this);
dlg.setLocationRelativeTo(this);
dlg.show();
} else if (actionCommand.equals("KeyEvents")) {
KeyEventTest dlg = new KeyEventTest(this);
dlg.setLocationRelativeTo(this);
dlg.show();
} else if (actionCommand.equals("FocusEvents")) {