163164165166167168169170171172173
/** * {@inheritDoc} */ public void actionPerformed(ActionEvent e) { AppCommand command = AppCommand.getCommand(e.getActionCommand()); if (command != null) { for (AppCommandListener l : commandListeners) { l.handleCommand(command); } } else {
236237238239240241242243244245246
/** * {@inheritDoc} */ public void actionPerformed(ActionEvent e) { AppCommand command = AppCommand.getCommand(e.getActionCommand()); if (command != null) { for (AppCommandListener l : listeners) { l.handleCommand(command); } } else {
128129130131132133134135136137138
96979899100101102103104105106