Package net.sf.jmp3renamer.util

Examples of net.sf.jmp3renamer.util.ExtendedFileFilter


     *
     * @param plugin
     *            the FilePlugin which stands for a specific fileformat
     */
    public void addFilePlugin(FilePlugin plugin) {
        ExtendedFileFilter filter = plugin.getFileFilter();
        fileFilters.add(filter);
        suffixToPlugin.put(filter.getSuffix(), plugin);
        supportedFiles.addSuffix(filter.getSuffix());
    }
View Full Code Here


     *
     * @param plugin
     *            the FilePlugin which stands for a specific fileformat
     */
    public void removeFilePlugin(FilePlugin plugin) {
        ExtendedFileFilter filter = plugin.getFileFilter();
        fileFilters.remove(filter);
        suffixToPlugin.remove(filter.getSuffix());
        supportedFiles.removeSuffix(filter.getSuffix());
    }
View Full Code Here

TOP

Related Classes of net.sf.jmp3renamer.util.ExtendedFileFilter

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.