Example usage for javax.swing JFileChooser getDialogType

List of usage examples for javax.swing JFileChooser getDialogType

Introduction

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

Prototype

public int getDialogType() 

Source Link

Document

Returns the type of this dialog.

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 type = fileChooser.getDialogType();

    frame.add(fileChooser, BorderLayout.CENTER);

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