* Gets the global actions from the supplied actions.
* @param actions the actions from which to extract the global ones
* @return the global actions
*/
public static GlobalActions getGlobalActions(Map actions) {
GlobalActions globalActions = new GlobalActions(
(IAction) actions.get(ActionID.COPY),
(IAction) actions.get(ActionID.CUT),
(IAction) actions.get(ActionID.DELETE),
(IAction) actions.get(ActionID.PASTE),
null);