Java Swing Menu Item newMenuItem(String name, KeyStroke keyStroke, final Runnable runnable)

Here you can find the source of newMenuItem(String name, KeyStroke keyStroke, final Runnable runnable)

Description

new Menu Item

License

Open Source License

Declaration

public static JMenuItem newMenuItem(String name, KeyStroke keyStroke, final Runnable runnable) 

Method Source Code

//package com.java2s;
/*/*w w w .  j a va 2  s. co  m*/
Open Auto Trading : A fully automatic equities trading platform with machine learning capabilities
Copyright (C) 2015 AnyObject Ltd.
    
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
    
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import javax.swing.*;

public class Main {
    public static JMenuItem newMenuItem(String name, KeyStroke keyStroke, final Runnable runnable) {
        JMenuItem menuItem = new JMenuItem(name);

        menuItem.setAccelerator(keyStroke);

        menuItem.addActionListener(new java.awt.event.ActionListener() {

            @Override
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                java.awt.EventQueue.invokeLater(runnable);
            }
        });

        return menuItem;
    }
}

Related

  1. makeMenuItem(Icon icon, Icon rollover, String menu_cmd, boolean is_toggle, int mnemonic, int accel)
  2. makeMenuItem(Icon icon, Icon rollover, String menu_cmd, boolean is_toggle, int mnemonic, int accel)
  3. makeMenuItem(String label, final Object object, final String methodName)
  4. makeMenuItem(String s, ActionListener listener)
  5. makeMenuItem(URL iconURL, String text, ActionListener listener)
  6. paintMenuItemBackground(Graphics g, Component c)
  7. userManualMenuItem()