Uses of Class
com.teamdev.filewatch.FileWatcher

Packages that use FileWatcher
com.teamdev.filewatch   
com.teamdev.filewatch.linux   
com.teamdev.filewatch.mac   
com.teamdev.filewatch.win   
 

Uses of FileWatcher in com.teamdev.filewatch
 

Methods in com.teamdev.filewatch that return FileWatcher
static FileWatcher FileWatcher.create(java.io.File folder)
          Factory method that creates a most efficient file system watcher depending on a current operating system and file system type of the specified folder.
 

Constructors in com.teamdev.filewatch with parameters of type FileWatcher
FileEvent.Added(FileWatcher source, java.io.File file)
           
FileEvent.Changed(FileWatcher source, java.io.File file)
           
FileEvent.Deleted(FileWatcher source, java.io.File file)
           
FileEvent.Deleted(FileWatcher source, java.io.File file, boolean isDirectory)
           
FileEvent.Moved(FileWatcher source, java.io.File newFile, java.io.File oldFile)
           
FileEvent.Renamed(FileWatcher source, java.io.File newFile, java.io.File oldFile)
           
FileEvent(FileWatcher source, java.io.File file)
          Constructs a new event ocurred to the file
WatcherEvent.Started(FileWatcher source)
          Constructs a prototypical Event.
WatcherEvent.Stopped(FileWatcher source)
          Constructs a prototypical Event.
WatcherEvent.Stopped(FileWatcher source, WatcherEvent.StopReason reason)
           
WatcherEvent(FileWatcher source)
          Constructs a prototypical Event.
 

Uses of FileWatcher in com.teamdev.filewatch.linux
 

Subclasses of FileWatcher in com.teamdev.filewatch.linux
 class INotifyWatcher
          Provides INotify API functionality for monitoring file system events on Linux platforms.
 

Uses of FileWatcher in com.teamdev.filewatch.mac
 

Subclasses of FileWatcher in com.teamdev.filewatch.mac
 class FSEventWatcher
           
 class KEventWatcher
          Provides KQueue API functionality for monitoring file system events on MacOS X platforms.
 

Uses of FileWatcher in com.teamdev.filewatch.win
 

Subclasses of FileWatcher in com.teamdev.filewatch.win
 class FATWatcher
          Provides the functionality for monitoring file system events on FAT file systems.
 class NTFSWatcher
          Provides the functionality for monitoring file system events on NTFS file systems.