Example usage for javax.swing JFileChooser getApproveButtonText

List of usage examples for javax.swing JFileChooser getApproveButtonText

Introduction

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

Prototype

public String getApproveButtonText() 

Source Link

Document

Returns the text used in the ApproveButton in the FileChooserUI.

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(".");

    String text = fileChooser.getApproveButtonText();

    frame.add(fileChooser, BorderLayout.CENTER);

    frame.pack();/*from   ww w . j  av  a 2  s.com*/
    frame.setVisible(true);
}