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