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