{
if ( commandService != null )
{
IAction da = ( IAction ) this.entryEditorActionMap.get( deleteAction );
da.setActionDefinitionId( "org.apache.directory.ldapstudio.browser.action.delete" );
commandService.getCommand( da.getActionDefinitionId() ).setHandler( new ActionHandler( da ) );
IAction ca = ( IAction ) this.entryEditorActionMap.get( copyAction );
ca.setActionDefinitionId( "org.apache.directory.ldapstudio.browser.action.copy" );
commandService.getCommand( ca.getActionDefinitionId() ).setHandler( new ActionHandler( ca ) );
IAction pa = ( IAction ) this.entryEditorActionMap.get( pasteAction );
pa.setActionDefinitionId( "org.apache.directory.ldapstudio.browser.action.paste" );
commandService.getCommand( pa.getActionDefinitionId() ).setHandler( new ActionHandler( pa ) );
showQuickFilterAction.setActionDefinitionId( "org.apache.directory.ldapstudio.browser.action.find" );
commandService.getCommand( showQuickFilterAction.getActionDefinitionId() ).setHandler(
new ActionHandler( showQuickFilterAction ) );
IAction pda = ( IAction ) this.entryEditorActionMap.get( propertyDialogAction );
pda.setActionDefinitionId( "org.apache.directory.ldapstudio.browser.action.properties" );
commandService.getCommand( pda.getActionDefinitionId() ).setHandler( new ActionHandler( pda ) );
}
}
if ( commandService != null )
{
IAction nva = ( IAction ) this.entryEditorActionMap.get( newValueAction );
commandService.getCommand( nva.getActionDefinitionId() ).setHandler( new ActionHandler( nva ) );
commandService.getCommand( openDefaultEditorAction.getActionDefinitionId() ).setHandler(
new ActionHandler( openDefaultEditorAction ) );
}
}