Label provider listeners are informed about state changes that affect the rendering of the viewer that uses this label provider.
194195196197198199200201202203204
void addListener(ILabelProviderListener listener) { try { //Internal decorator might be null so be prepared IBaseLabelProvider currentDecorator = internalGetLabelProvider(); if (currentDecorator != null) { currentDecorator.addListener(listener); } } catch (CoreException exception) { handleCoreException(exception); } }