List of usage examples for javax.swing JFileChooser isFileSelectionEnabled
@BeanProperty(bound = false) public boolean isFileSelectionEnabled()
From source file:Main.java
public static void main(String[] argv) { JFileChooser chooser = new JFileChooser(); boolean enabled = chooser.isFileSelectionEnabled(); chooser.showOpenDialog(null);/*from w ww . ja v a2 s .c om*/ }