Package com.mucommander.commons.file.filter

Examples of com.mucommander.commons.file.filter.AndFileFilter


public class SplitFileAction extends SelectedFileAction {

    public SplitFileAction(MainFrame mainFrame, Map<String,Object> properties) {
        super(mainFrame, properties);

        setSelectedFileFilter(new AndFileFilter(
            new AttributeFileFilter(FileAttribute.DIRECTORY, true),
            new FileOperationFilter(FileOperation.READ_FILE)
        ));
    }
View Full Code Here

TOP

Related Classes of com.mucommander.commons.file.filter.AndFileFilter

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.