private void initActions()
{
this.globalActions = new HashMap<String,ActionBridge>();
final ActionBridge selectAllBridge = new ActionBridge( this.diagramPresentation, this.part.getAction( "Sapphire.Diagram.SelectAll" ) );
this.globalActions.put( ActionFactory.SELECT_ALL.getId(), selectAllBridge );
final ActionBridge deleteBridge = new ActionBridge( this.diagramPresentation, this.part.getAction( "Sapphire.Delete" ) );
this.globalActions.put( ActionFactory.DELETE.getId(), deleteBridge );
final ActionBridge printBridge = new ActionBridge( this.diagramPresentation, this.part.getAction( "Sapphire.Diagram.Print" ) );
this.globalActions.put( ActionFactory.PRINT.getId(), printBridge );
}