Java Swing Tutorial - Java JFileChooser.getDragEnabled()








Syntax

JFileChooser.getDragEnabled() has the following syntax.

public boolean getDragEnabled()

Example

In the following code shows how to use JFileChooser.getDragEnabled() method.

/* ww w  .  ja v a 2  s .  co m*/
import java.awt.BorderLayout;
import java.io.File;

import javax.swing.JFileChooser;
import javax.swing.JFrame;

public class Main{

  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();
    frame.setVisible(true);
  }
}