Examples of ExitAction


Examples of org.apache.cayenne.modeler.action.ExitAction

        registerAction(new ImportDBAction(application));
        registerAction(new ImportEOModelAction(application));
        registerAction(new GenerateDBAction(application));
        registerAction(new AboutAction(application)).setAlwaysOn(true);
        registerAction(new ConfigurePreferencesAction(application)).setAlwaysOn(true);
        registerAction(new ExitAction(application)).setAlwaysOn(true);
        registerAction(new NavigateBackwardAction(application)).setAlwaysOn(true);
        registerAction(new NavigateForwardAction(application)).setAlwaysOn(true);
    }
View Full Code Here

Examples of org.apache.cayenne.modeler.action.ExitAction

        registerAction(new GenerateDBAction(application));
        registerAction(new MigrateAction(application));
        registerAction(new AboutAction(application)).setAlwaysOn(true);
        registerAction(new DocumentationAction(application)).setAlwaysOn(true);
        registerAction(new ConfigurePreferencesAction(application)).setAlwaysOn(true);
        registerAction(new ExitAction(application)).setAlwaysOn(true);
        registerAction(new NavigateBackwardAction(application)).setAlwaysOn(true);
        registerAction(new NavigateForwardAction(application)).setAlwaysOn(true);
        // search action registered
        registerAction(new FindAction(application));
       
View Full Code Here

Examples of org.noos.xing.mydoggy.mydoggyset.action.ExitAction

        JMenuBar menuBar = new JMenuBar();

        JMenu fileMenu = new JMenu("File");
        fileMenu.add(new LoadWorkspaceAction(frame, toolWindowManager));
        fileMenu.addSeparator();
        fileMenu.add(new ExitAction(frame));

        menuBar.add(fileMenu);
        this.frame.setJMenuBar(menuBar);
    }
View Full Code Here

Examples of org.noos.xing.mydoggy.mydoggyset.action.ExitAction

        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);
        this.frame.setJMenuBar(menuBar);
    }
View Full Code Here

Examples of org.noos.xing.mydoggy.mydoggyset.action.ExitAction

        JMenuBar menuBar = new JMenuBar();

        JMenu fileMenu = new JMenu("File");
        fileMenu.add(new LoadWorkspaceAction(frame, toolWindowManager));
        fileMenu.addSeparator();
        fileMenu.add(new ExitAction(frame));

        menuBar.add(fileMenu);
        this.frame.setJMenuBar(menuBar);
    }
View Full Code Here

Examples of org.noos.xing.mydoggy.mydoggyset.action.ExitAction

        JMenuBar menuBar = new JMenuBar();

        JMenu fileMenu = new JMenu("File");
        fileMenu.add(new LoadWorkspaceAction(frame, toolWindowManager));
        fileMenu.addSeparator();
        fileMenu.add(new ExitAction(frame));

        menuBar.add(fileMenu);
        this.frame.setJMenuBar(menuBar);
    }
View Full Code Here

Examples of org.noos.xing.mydoggy.mydoggyset.action.ExitAction

        // File Menu
        JMenu fileMenu = new JMenu("File");
        fileMenu.add(new LoadWorkspaceAction(frame, toolWindowManager));
        fileMenu.add(new StoreWorkspaceAction(frame, toolWindowManager));
        fileMenu.addSeparator();
        fileMenu.add(new ExitAction(frame));

        // Content Menu
        JMenu contentMenu = new JMenu("Content");
        contentMenu.add(new ViewContextAction("Wellcome", contentContext, MyDoggySet.class));
        contentMenu.add(new ViewContextAction("Manager", contentContext, ToolWindowManager.class));
View Full Code Here

Examples of org.noos.xing.mydoggy.mydoggyset.action.ExitAction

        JMenuBar menuBar = new JMenuBar();

        JMenu fileMenu = new JMenu("File");
        fileMenu.add(new LoadWorkspaceAction(frame, toolWindowManager));
        fileMenu.addSeparator();
        fileMenu.add(new ExitAction(frame));

        menuBar.add(fileMenu);
        this.frame.setJMenuBar(menuBar);
    }
View Full Code Here

Examples of org.osm2world.viewer.control.actions.ExitAction

      subMenu.add(new ExportObjAction(this, data, messageManager, renderOptions));
      subMenu.add(new ExportObjDirAction(this, data, messageManager, renderOptions));
      subMenu.add(new ExportPOVRayAction(this, data, messageManager, renderOptions));
      subMenu.add(new ExportScreenshotAction(this, data, messageManager, renderOptions));
      subMenu.add(new StatisticsAction(this, data));
      subMenu.add(new ExitAction());
      menu.add(subMenu);

    } { //"View"
     
      JMenu subMenu = new JMenu("View");
View Full Code Here

Examples of org.shiftone.jrat.ui.action.ExitAction

    //
    outputFileAction = new OpenOutputFileAction(this, viewContainer);
    open.addActionListener(outputFileAction);
    close.addActionListener(new RemoveCurrentTabAction(viewContainer));
    closeAll.addActionListener(new RemoveAllTabsAction(viewContainer));
    exit.addActionListener(new ExitAction());
    injectFile.addActionListener(InjectDirAction.createForFiles(injector, viewContainer));
    injectDir.addActionListener(InjectDirAction.createForDirs(injector, viewContainer));
    docs.addActionListener(new ShowDocsAction(viewContainer, ShowDocsAction.HOME_TITLE, ShowDocsAction.HOME_URL));
    license.addActionListener(new ShowDocsAction(viewContainer,
        ShowDocsAction.LICENSE_TITLE,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.