protected void initMenubar() {
// Create a simple JMenuBar
JMenuBar menuBar = new JMenuBar();
JMenu fileMenu = new JMenu("File");
fileMenu.add(new LoadWorkspaceAction(frame, toolWindowManager));
fileMenu.add(new StoreWorkspaceAction(frame, toolWindowManager));
fileMenu.addSeparator();
fileMenu.add(new ExitAction(frame));
menuBar.add(fileMenu);