Package org.gradle.api.tasks.incremental
Interface InputFileDetails
public interface InputFileDetails
A change to an input file.
- 
Method Details- 
isAddedboolean isAdded()Was the file added?- Returns:
- true if the file was added since the last execution
 
- 
isModifiedboolean isModified()Was the file modified?- Returns:
- if the file was modified
 
- 
isRemovedboolean isRemoved()Was the file removed?- Returns:
- true if the file was removed since the last execution
 
- 
getFileFile getFile()The input file, which may no longer exist.- Returns:
- the input file
 
 
-