/**
*
*/
private void initActions() {
BaseGridAction action = (BaseGridAction) ActionRegistry.EDIT_CONTACT.get();
action.setStore( PanelRegistry.CONTACT_LIST_PANEL.get( ContactListPanel.class ).getStore() );
PanelRegistry.CONTACT_LIST_PANEL.get( ContactListPanel.class ).registerAction( action );
action = (BaseGridAction) ActionRegistry.DELETE_CONTACT.get();
action.setStore( PanelRegistry.CONTACT_LIST_PANEL.get( ContactListPanel.class ).getStore() );
PanelRegistry.CONTACT_LIST_PANEL.get( ContactListPanel.class ).registerAction( action );
action = (BaseGridAction) ActionRegistry.NEW_MESSAGE_FOR_CONTACT.get();
action.setStore( PanelRegistry.CONTACT_LIST_PANEL.get( ContactListPanel.class ).getStore() );
PanelRegistry.CONTACT_LIST_PANEL.get( ContactListPanel.class ).registerAction( action );
}