Package fr.soleil.lib.project.swing.file

Examples of fr.soleil.lib.project.swing.file.MultiExtFileFilter


    }

    protected void initFileChooser() {
        if (chooser == null) {
            chooser = new JFileChooser(".");
            chooser.addChoosableFileFilter(new MultiExtFileFilter("Text files", "txt"));
        }

        if (lastConfig.length() > 0) {
            chooser.setSelectedFile(new File(lastConfig));
        }
View Full Code Here

TOP

Related Classes of fr.soleil.lib.project.swing.file.MultiExtFileFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.