Groovy Documentation

org.gradle.api.file
[Java] Class EmptyFileVisitor

java.lang.Object
  org.gradle.api.file.EmptyFileVisitor
All Implemented Interfaces:
FileVisitor

public class EmptyFileVisitor

The EmptyFileVisitor can be extends by implementations that only require to implement one of the 2 visit methods (dir or file). This is just to limit the amount of code clutter when not both visit methods need to be implemented.

Authors:
Tom Eyckmans


Method Summary
void visitDir(FileVisitDetails dirDetails)

void visitFile(FileVisitDetails fileDetails)

 
Methods inherited from class java.lang.Object
java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll()
 

Method Detail

visitDir

public void visitDir(FileVisitDetails dirDetails)


visitFile

public void visitFile(FileVisitDetails fileDetails)


 

Groovy Documentation