mySelectionListeners.remove(listener);
}
protected void fireSelectionChanged() {
for (Iterator listeners = mySelectionListeners.iterator(); listeners.hasNext();) {
ChartSelectionListener nextListener = (ChartSelectionListener) listeners.next();
nextListener.selectionChanged();
}
}
}
protected static class ChartSelectionImpl implements ChartSelection {