Example usage for javax.swing JCheckBoxMenuItem getSelectedObjects

List of usage examples for javax.swing JCheckBoxMenuItem getSelectedObjects

Introduction

In this page you can find the example usage for javax.swing JCheckBoxMenuItem getSelectedObjects.

Prototype

@BeanProperty(bound = false)
public Object[] getSelectedObjects() 

Source Link

Document

Returns an array (length 1) containing the check box menu item label or null if the check box is not selected.

Usage

From source file:Main.java

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

    // File Menu, F - Mnemonic
    JMenu fileMenu = new JMenu("File");
    fileMenu.setMnemonic(KeyEvent.VK_F);
    menuBar.add(fileMenu);//from www .j a v a  2 s .  c  om

    // File->New, N - Mnemonic
    JMenuItem newMenuItem = new JMenuItem("New", KeyEvent.VK_N);
    fileMenu.add(newMenuItem);

    JCheckBoxMenuItem caseMenuItem = new JCheckBoxMenuItem("Case Sensitive", true);
    caseMenuItem.setMnemonic(KeyEvent.VK_C);
    fileMenu.add(caseMenuItem);

    System.out.println(caseMenuItem.getSelectedObjects().length);

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