protected void addAction(String actionCommand) {
EventListener[] listeners = listenerList.getListeners(ActionListener.class);
for (int i = 0; i < listeners.length; i++) {
ActionListener actionListener = (ActionListener) listeners[i];
try {
actionListener.actionPerformed(new ActionEvent(JbsDialogWindow.this, actionCommand));
} catch (Throwable t) {
logger.error("Error adding action.",t);
}
}
}