{
this.view = view;
SourceViewer viewer = this.view.getMainWidget().getSourceViewer();
modificationLogsViewActionMap = new HashMap<String, ModificationLogsViewActionProxy>();
modificationLogsViewActionMap.put( olderAction, new ModificationLogsViewActionProxy( viewer, new OlderAction(
view ) ) );
modificationLogsViewActionMap.put( newerAction, new ModificationLogsViewActionProxy( viewer, new NewerAction(
view ) ) );
modificationLogsViewActionMap.put( refreshAction, new ModificationLogsViewActionProxy( viewer,
new RefreshAction( view ) ) );
modificationLogsViewActionMap.put( clearAction, new ModificationLogsViewActionProxy( viewer, new ClearAction(
view ) ) );
modificationLogsViewActionMap.put( exportAction, new ModificationLogsViewActionProxy( viewer,
new ExportAction() ) );
enableModificationLogsAction = new EnableModificationLogsAction();
openModificationLogsPreferencePageAction = new OpenModificationLogsPreferencePageAction();
}