4142434445464748495051
toNotify = new ArrayList(listeners); } // Notify all in toNotify for (Iterator i = toNotify.iterator(); i.hasNext();) { ISocketListener l = (ISocketListener) i.next(); l.handleSocketEvent(event); } } }