.getExtensionPointList(MapInterceptor.MAP_INTERCEPTOR_EXTENSIONPOINT);
for( IConfigurationElement element : interceptors ) {
if (!MapInterceptor.CLOSING_ID.equals(element.getName())) //$NON-NLS-1$
continue;
try {
MapInterceptor interceptor = (MapInterceptor) element
.createExecutableExtension("class"); //$NON-NLS-1$
interceptor.run(getMap());
} catch (Exception e) {
ProjectPlugin.log("", e); //$NON-NLS-1$
}
}
}