List of usage examples for java.io FilenameFilter interface-usage
From source file org.eclipse.xtend.backend.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.
*
* Ported from org.eclipse.internal.xpand2.pr.util.GenericFileFile to the backend
*
From source file InvertedFileFilter.java
/**
* This takes a <code>FilenameFilter<code> as input and inverts the selection.
* This is used in retrieving files that are not accepted by a filter.
*
* @author <a href="mailto:dev@avalon.apache.org">Avalon Development Team</a>
* @version CVS $Revision: 494012 $ $Date: 2007-01-08 11:23:58 +0100 (Mo, 08 Jan 2007) $
From source file DirectoryFileFilter.java
/**
* This filter accepts <code>File</code>s that are directories.
* <p>Eg., here is how to print out a list of the current directory's subdirectories:</p>
*
* <pre>
* File dir = new File(".");
From source file DirectoryFileFilter.java
/**
* This filter accepts <code>File</code>s that are directories.
* Eg., here is how to print out a list of the current directory's subdirectories:
*
* <pre>
* File dir = new File(".");
From source file edu.ku.brc.helpers.ImageFilter.java
/**
* Class for filtering image types by extension.
*
* @author rod
*
* @code_status Alpha
From source file ExtensionFileFilter.java
/**
* This filters files based on the extension (what the filename
* ends with). This is used in retrieving all the files of a
* particular type.
*
* <p>Eg., to retrieve and print all <code>*.java</code> files in the current directory:</p>
From source file org.kepler.util.FilenameFilter_RegularPattern.java
/** * A FilenameFilter class for listing directories. It uses an array of regular * patterns to filter filenames. Used by DirectoryListing as well as * org.kepler.ssh.LocalExec and org.kepler.ssh.SshExec */ public class FilenameFilter_RegularPattern implements FilenameFilter {
From source file org.kalypso.core.io.ExtensionFilenameFilter.java
/** * A filename filter which looks for file extensions. * * @author Holger Albert */ public class ExtensionFilenameFilter implements FilenameFilter {
From source file org.kalypso.core.io.ExcludeFilenameFilter.java
/** * A filename filter which excludes specific files. * * @author Holger Albert */ public class ExcludeFilenameFilter implements FilenameFilter {
From source file org.apache.sis.internal.maven.Assembler.java
/**
* Creates a ZIP files containing the content of the <code>application/sis-console/src/main/artifact</code>
* directory together with the Pack200 file created by <code>BundleCreator</code>.
* This mojo can be invoked from the command line as below:
*
* <blockquote><code>mvn org.apache.sis.core:sis-build-helper:dist --non-recursive</code></blockquote>