private void fireToListeners(MouseEvent paramMouseEvent) { System.Collections.IEnumerator iterator = this.actionListenerList.GetEnumerator(); ActionEvent actionEvent = new ActionEvent(paramMouseEvent.Source, paramMouseEvent.ID, ActionCommand); while (iterator.MoveNext()) { ActionListener actionListener = (ActionListener)iterator.Current; actionListener.actionPerformed(actionEvent); } }