Object[] selObjs = oldGraphSelectionModel.getSelectedObjects();
Iterator it = oldGraphSelectionModel.getListeners();
while(it.hasNext()) {
GraphSelectionModelListener lsnr = (GraphSelectionModelListener) it.next();
graphSelectionModel.addGraphSelectionModelListener(lsnr);
// Remove the listener from the old selection model
it.remove();
}