Example usage for javax.swing JFileChooser getDragEnabled

List of usage examples for javax.swing JFileChooser getDragEnabled

Introduction

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

Prototype

public boolean getDragEnabled() 

Source Link

Document

Gets the value of the dragEnabled property.

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(".");
    boolean f = fileChooser.getDragEnabled();

    frame.add(fileChooser, BorderLayout.CENTER);

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