blob: f5f662870b07a66aa61781c6000dc5826b332f9c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package cuchaz.enigma.gui.filechooser;
import javax.swing.*;
public class FileChooserAny extends JFileChooser {
public FileChooserAny() {
this.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
this.setAcceptAllFileFilterUsed(false);
}
}
|