Example usage for java.io FilenameFilter interface-usage

List of usage examples for java.io FilenameFilter interface-usage

Introduction

In this page you can find the example usage for java.io FilenameFilter interface-usage.

Usage

From source file org.betaconceptframework.astroboa.engine.definition.XsdFilter.java

/**
 * @author Gregory Chomatas (gchomatas@betaconcept.com)
 * @author Savvas Triantafyllou (striantafyllou@betaconcept.com)
 * 
 */
public class XsdFilter implements FilenameFilter {

From source file de.thischwa.pmcms.tool.file.FilenameFilterIgnoreFiles.java

/**
 * {@link FilenameFilter} which ignores all files/dirs in the submitted collection.
 *
 * @author Thilo Schwarz
 */
public class FilenameFilterIgnoreFiles implements FilenameFilter {

From source file org.exoplatform.services.jcr.ext.artifact.MavenFileFilter.java

/**
 * Author : Volodymyr Krasnikov volodymyr.krasnikov@exoplatform.com.ua
 * 
 * @version $Id: MavenFileFilter.java 11:45:04
 */

From source file MainClass.java

class FileListFilter implements FilenameFilter {
    private String name;

    private String extension;

    public FileListFilter(String name, String extension) {

From source file org.jadira.scanner.core.helper.filenamefilter.AntPathFilter.java

/**
 * Class that matches actual directory paths against an Ant style path
 * See http://ant.apache.org/manual/dirtasks.html
 */
public class AntPathFilter implements FilenameFilter {

From source file MaximumFileFilter.java

/**
 * File filter implementation to retrieve at most predefined number of files
 * which are older than specified data
 * 
 * @version $Id: MaximumFileFilter.java,v 1.4 2007/01/07 06:14:00 bastafidli Exp $
 * @author Miro Halas

From source file ExtensionFilenameFilter.java

/**
 * An implementation of the <code>java.io.FilenameFilter</code> which accepts
 * files whose name ends with a certain string. This makes it useful for
 * accepting files with a certain extension.
 */

From source file org.webical.plugin.registration.PluginFilenameFilter.java

/**
 * 
 * Filename filter for plugin packages
 * @author ivo
 *
 */

From source file FilenamePrefixFilter.java

/**
 * A <em>prefix</em> based filename filter.
 *
 * @version <tt>$Revision: 1958 $</tt>
 * @author  <a href="mailto:jason@planet57.com">Jason Dillon</a>
 */

From source file org.eclipse.internal.xpand2.pr.util.GenericFileFilter.java

/**
 * Configurable FilenameFilter. By default this filter does not accept well known files or directories 
 * managed by source control systems and temporary files. 
 *
 * @see http://www.cvshome.org/docs/manual/cvs-1.11.10/cvs_18.html#SEC156
 */