Package de.ailis.xadrian.actions

Examples of de.ailis.xadrian.actions.SelectAllAction


        this.textPane.addCaretListener(this);

        // Create the popup menu for the text pane
        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));
View Full Code Here


        {
            add(new CutAction(this));
            add(new CopyAction(this));
            add(new PasteAction(this));
            addSeparator();
            add(new SelectAllAction(this));
        }
        else
        {
            add(new CopyAction(this));
            add(new SelectAllAction(this));
        }
        SwingUtils.setPopupMenu(textPane, this);
    }
View Full Code Here

TOP

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

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.