}
@SuppressWarnings("unchecked")
protected void createActions() {
super.createActions();
ActionRegistry registry = getActionRegistry();
IAction action;
action = new DirectEditAction((IWorkbenchPart) this);
registry.registerAction(action);
getSelectionActions().add(action.getId());
action = new SetAsStartStateAction(this);
registry.registerAction(action);
getSelectionActions().add(action.getId());
action = new EditPropertiesAction(this);
registry.registerAction(action);
getSelectionActions().add(action.getId());
action = new ExportAction(this);
registry.registerAction(action);
getSelectionActions().add(action.getId());
action = new OpenConfigFileAction(this);
registry.registerAction(action);
getSelectionActions().add(action.getId());
action = new OpenBeansGraphAction(this);
registry.registerAction(action);
getSelectionActions().add(action.getId());
action = new OpenBeansConfigAction(this);
registry.registerAction(action);
getSelectionActions().add(action.getId());
}