コード例 #1
0
 private void notifyMapListeners(MapEvent event) {
   for (IMapListener listener : map.mapListeners) {
     try {
       listener.changed(event);
     } catch (Throwable t) {
       ProjectPlugin.log("", t); // $NON-NLS-1$
     }
   }
 }