Uses of Interface
org.stanwood.media.progress.IProgressMonitor

Packages that use IProgressMonitor
org.stanwood.media.actions   
org.stanwood.media.progress   
org.stanwood.media.setup   
org.stanwood.media.store   
org.stanwood.media.store.memory   
org.stanwood.media.store.mp4   
org.stanwood.media.store.mp4.itunes   
org.stanwood.media.store.xmlstore   
 

Uses of IProgressMonitor in org.stanwood.media.actions
 

Methods in org.stanwood.media.actions with parameters of type IProgressMonitor
protected  java.util.List<java.io.File> ActionPerformer.findMediaFiles(IProgressMonitor monitor)
           
 void ActionPerformer.performActions(IProgressMonitor monitor)
          Used to perform the actions
 void ActionPerformer.performActions(java.util.List<java.io.File> files, java.util.Set<java.io.File> dirs, IProgressMonitor parentMonitor)
          Used to perform the actions
 void SeenDatabase.read(IProgressMonitor progress)
          Used to read the database from disk
 void SeenDatabase.write(IProgressMonitor parentMonitor)
          Used to write the database to disc
 

Uses of IProgressMonitor in org.stanwood.media.progress
 

Classes in org.stanwood.media.progress that implement IProgressMonitor
 class NullProgressMonitor
          A default progress monitor implementation suitable for subclassing.
 class ProgressMonitorWrapper
          An abstract wrapper around a progress monitor which, unless overridden, forwards IProgressMonitor and IProgressMonitorWithBlocking methods to the wrapped progress monitor.
 class SubMonitor
          A progress monitor that uses a given amount of work ticks from a parent monitor.
 class SubProgressMonitor
          For new implementations consider using SubMonitor.
 

Methods in org.stanwood.media.progress that return IProgressMonitor
 IProgressMonitor ProgressMonitorWrapper.getWrappedProgressMonitor()
          Returns the wrapped progress monitor.
 

Methods in org.stanwood.media.progress with parameters of type IProgressMonitor
static SubMonitor SubMonitor.convert(IProgressMonitor monitor)
          Converts an unknown (possibly null) IProgressMonitor into a SubMonitor.
static SubMonitor SubMonitor.convert(IProgressMonitor monitor, int work)
          Converts an unknown (possibly null) IProgressMonitor into a SubMonitor allocated with the given number of ticks.
static SubMonitor SubMonitor.convert(IProgressMonitor monitor, java.lang.String taskName, int work)
          Converts an unknown (possibly null) IProgressMonitor into a SubMonitor allocated with the given number of ticks.
 

Constructors in org.stanwood.media.progress with parameters of type IProgressMonitor
ProgressMonitorWrapper(IProgressMonitor monitor)
          Creates a new wrapper around the given monitor.
SubProgressMonitor(IProgressMonitor monitor, int ticks)
          Creates a new sub-progress monitor for the given monitor.
SubProgressMonitor(IProgressMonitor monitor, int ticks, int style)
          Creates a new sub-progress monitor for the given monitor.
 

Uses of IProgressMonitor in org.stanwood.media.setup
 

Methods in org.stanwood.media.setup with parameters of type IProgressMonitor
 void ConfigReader.writeConfig(IProgressMonitor monitor, java.io.File file)
          Write the configuration to a file
 

Uses of IProgressMonitor in org.stanwood.media.store
 

Methods in org.stanwood.media.store with parameters of type IProgressMonitor
 java.util.Collection<IEpisode> IStore.listEpisodes(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the episodes within the store if the store supports the operation.
 java.util.List<IEpisode> SapphireStore.listEpisodes(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the episodes within the store if the store supports the operation.
 java.util.Collection<IFilm> IStore.listFilms(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the films within the store if the store supports the operation.
 java.util.List<IFilm> SapphireStore.listFilms(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the films within the store if the store supports the operation.
 

Uses of IProgressMonitor in org.stanwood.media.store.memory
 

Methods in org.stanwood.media.store.memory with parameters of type IProgressMonitor
 java.util.Collection<IEpisode> MemoryStore.listEpisodes(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the episodes within the store if the store supports the operation.
 java.util.Collection<IFilm> MemoryStore.listFilms(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the films within the store if the store supports the operation.
 

Uses of IProgressMonitor in org.stanwood.media.store.mp4
 

Methods in org.stanwood.media.store.mp4 with parameters of type IProgressMonitor
 java.util.List<IEpisode> MP4ITunesStore.listEpisodes(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the episodes within the store if the store supports the operation.
 java.util.List<IFilm> MP4ITunesStore.listFilms(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the films within the store if the store supports the operation.
 

Uses of IProgressMonitor in org.stanwood.media.store.mp4.itunes
 

Methods in org.stanwood.media.store.mp4.itunes with parameters of type IProgressMonitor
 java.util.Collection<IEpisode> RemoteMacOSXItunesStore.listEpisodes(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the episodes within the store if the store supports the operation.
 java.util.Collection<IFilm> RemoteMacOSXItunesStore.listFilms(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the films within the store if the store supports the operation.
 

Uses of IProgressMonitor in org.stanwood.media.store.xmlstore
 

Methods in org.stanwood.media.store.xmlstore with parameters of type IProgressMonitor
 java.util.Collection<IEpisode> XMLStore2.listEpisodes(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the episodes within the store if the store supports the operation.
 java.util.Collection<IFilm> XMLStore2.listFilms(MediaDirConfig dirConfig, IProgressMonitor monitor)
          This is used to list all the films within the store if the store supports the operation.