Uses of Package
name.pachler.nio.file

Packages that use name.pachler.nio.file
name.pachler.nio.file The name.pachler.nio.file package provides source-compatible implementation of JDK7's WatchService API. 
name.pachler.nio.file.ext Provides non-standard ExtendedWatchEventKind class with extended watch event kinds and modifier tags that enable non-standard features, like recursive watches and file rename tracking. 
 

Classes in name.pachler.nio.file used by name.pachler.nio.file
ClosedWatchServiceException
          This exception is thrown by a WatchService method if that service has been closed.
FileSystem
          Represents a file system.
Path
          This class represents an abstract Path object that a WatchService can operate on.
Watchable
          A watchable is an object that can be registered with a WatchService to be monitored for changes via it's register methods.
WatchEvent
          Instances of this class hold the information of a particular change to an element below the watched file system object (e.g. a file modification or a rename).
WatchEvent.Kind
          Instances of this class act as tags to identify different kinds of events (like file creation or deletion)
WatchEvent.Modifier
          A modifier can be specified to register to change the way changes to a watchable are reported. jpathwatch defines a set of modifiers in the ExtendedWatchEventModifier class.
WatchKey
          A WatchKey represents a Watchable's registration for events with a WatchService.
WatchService
          A service that provides monitoring for Watchables, reporting changes on these objects (in the case of jpathwatch, these are Path instances).
 

Classes in name.pachler.nio.file used by name.pachler.nio.file.ext
Path
          This class represents an abstract Path object that a WatchService can operate on.
WatchEvent.Kind
          Instances of this class act as tags to identify different kinds of events (like file creation or deletion)
WatchEvent.Modifier
          A modifier can be specified to register to change the way changes to a watchable are reported. jpathwatch defines a set of modifiers in the ExtendedWatchEventModifier class.
WatchService
          A service that provides monitoring for Watchables, reporting changes on these objects (in the case of jpathwatch, these are Path instances).