Package org.apache.harmony.jretools.policytool.view.MainFrame

Examples of org.apache.harmony.jretools.policytool.view.MainFrame.MenuItemEnum


     * Handles the action events of the menu items.
     * @param ae details of the action event
     */
    public void actionPerformed( final ActionEvent ae ) {
        // The action command is the ordinal of the menu item enum.
        final MenuItemEnum menuItemEnum = MenuItemEnum.values()[ Integer.parseInt( ae.getActionCommand() ) ];

        File editedPolicyFile_ = null;

        final JFileChooser fileChooser = new JFileChooser();
        switch ( menuItemEnum ) {
View Full Code Here

TOP

Related Classes of org.apache.harmony.jretools.policytool.view.MainFrame.MenuItemEnum

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.