Example usage for javax.swing JMenu setDelay

List of usage examples for javax.swing JMenu setDelay

Introduction

In this page you can find the example usage for javax.swing JMenu setDelay.

Prototype

@BeanProperty(bound = false, expert = true, description = "The delay between menu selection and making the popup menu visible")
public void setDelay(int d) 

Source Link

Document

Sets the suggested delay before the menu's PopupMenu is popped up or down.

Usage

From source file:Main.java

public static void main(final String args[]) {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JMenuBar menuBar = new JMenuBar();

    // File Menu, F - Mnemonic
    JMenu fileMenu = new JMenu("File");
    fileMenu.setDelay(100);

    // File->New, N - Mnemonic
    JMenuItem newMenuItem = new JMenuItem("New");
    fileMenu.add(newMenuItem);//from   w  w  w  .j a va  2s .co m

    frame.setJMenuBar(menuBar);
    frame.setSize(350, 250);
    frame.setVisible(true);
}