Package de.ailis.xadrian.actions

Examples of de.ailis.xadrian.actions.ChangeSectorAction


        final JPopupMenu popupMenu = new JPopupMenu();
        popupMenu.add(new CopyAction(this));
        popupMenu.add(new SelectAllAction(this));
        popupMenu.addSeparator();
        popupMenu.add(new AddFactoryAction(this));
        popupMenu.add(new ChangeSectorAction(this.complex, this, "complex"));
        popupMenu.add(new ChangeSunsAction(this));
        popupMenu.add(new ChangePricesAction(this));
        popupMenu.add(new JCheckBoxMenuItem(new ToggleBaseComplexAction(this)));
        SwingUtils.setPopupMenu(this.textPane, popupMenu);
View Full Code Here


     */
    @Override
    protected List<Action> createDialogActions()
    {
        final List<Action> dialogActions = new ArrayList<Action>();
        dialogActions.add(new ChangeSectorAction(this.gameProvider,
            this.asteroidsInfoPane, "sector"));
        return dialogActions;
    }
View Full Code Here

TOP

Related Classes of de.ailis.xadrian.actions.ChangeSectorAction

Copyright © 2018 www.massapicom. 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.