Example usage for javax.swing JFileChooser getApproveButtonMnemonic

List of usage examples for javax.swing JFileChooser getApproveButtonMnemonic

Introduction

In this page you can find the example usage for javax.swing JFileChooser getApproveButtonMnemonic.

Prototype

public int getApproveButtonMnemonic() 

Source Link

Document

Returns the approve button's mnemonic.

Usage

From source file:Main.java

public static void main(String[] a) {
    JFrame frame = new JFrame("JFileChooser Popup");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JFileChooser fileChooser = new JFileChooser(".");

    int mu = fileChooser.getApproveButtonMnemonic();

    frame.add(fileChooser, BorderLayout.CENTER);

    frame.pack();//ww  w .ja  va 2  s.  c  o  m
    frame.setVisible(true);
}