Class ExecutableSelector
java.lang.Object
org.apache.tools.ant.types.selectors.ExecutableSelector
- All Implemented Interfaces:
- ResourceSelector,- FileSelector
A selector that selects executable files.
 
Executable is defined in terms of Files.isExecutable(java.nio.file.Path), this means the selector will
 accept any file that exists and is executable by the
 application.
- Since:
- Ant 1.10.0
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanisSelected(File basedir, String filename, File file) Method that each selector will implement to create their selection behaviour.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.tools.ant.types.selectors.FileSelectorisSelected
- 
Constructor Details- 
ExecutableSelectorpublic ExecutableSelector()
 
- 
- 
Method Details- 
isSelectedDescription copied from interface:FileSelectorMethod that each selector will implement to create their selection behaviour. If there is a problem with the setup of a selector, it can throw a BuildException to indicate the problem.- Specified by:
- isSelectedin interface- FileSelector
- Parameters:
- basedir- A java.io.File object for the base directory
- filename- The name of the file to check
- file- A File object for this filename
- Returns:
- whether the file should be selected or not
 
 
-