344345346347348349350351352
public void fireSelectionResetEvent() { Iterator iter = selectionListeners.iterator(); while (iter.hasNext()) { GraphSelectionListener l = (GraphSelectionListener) iter.next(); l.selectionReset(new GraphSelectionEvent(null, selection)); } } }