Uses of Interface
org.stanwood.media.model.IFilm

Packages that use IFilm
org.stanwood.media   
org.stanwood.media.actions   
org.stanwood.media.actions.command   
org.stanwood.media.actions.podcast   
org.stanwood.media.actions.rename   
org.stanwood.media.cli.manager   
org.stanwood.media.model   
org.stanwood.media.search   
org.stanwood.media.source   
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 IFilm in org.stanwood.media
 

Methods in org.stanwood.media that return IFilm
 IFilm MediaDirectory.getFilm(java.io.File rootMediaDir, java.io.File filmFile, SearchResult searchResult, boolean refresh)
          Get a film with a given film id and source id.
 

Uses of IFilm in org.stanwood.media.actions
 

Methods in org.stanwood.media.actions with parameters of type IFilm
 void IAction.perform(MediaDirectory dir, IFilm film, java.io.File mediaFile, java.lang.Integer part, IActionEventHandler actionEventHandler)
          Used to perform the action upon a film file.
 

Uses of IFilm in org.stanwood.media.actions.command
 

Methods in org.stanwood.media.actions.command with parameters of type IFilm
 void ExecuteSystemCommandAction.perform(MediaDirectory dir, IFilm film, java.io.File mediaFile, java.lang.Integer part, IActionEventHandler actionEventHandler)
          This will execute the command in the parameter on the mediaFile if the parameter is set.
 

Uses of IFilm in org.stanwood.media.actions.podcast
 

Methods in org.stanwood.media.actions.podcast with parameters of type IFilm
 void PodCastAction.perform(MediaDirectory dir, IFilm film, java.io.File mediaFile, java.lang.Integer part, IActionEventHandler actionEventHandler)
          Used to perform the action upon a film file.
 

Uses of IFilm in org.stanwood.media.actions.rename
 

Methods in org.stanwood.media.actions.rename with parameters of type IFilm
 java.lang.String PatternMatcher.getNewFilmName(MediaDirConfig dirConfig, java.lang.String pattern, IFilm film, java.lang.String ext, java.lang.Integer part, IMediaFileInfo info)
          Get a file name for a film pattern
 void RenameAction.perform(MediaDirectory dir, IFilm film, java.io.File mediaFile, java.lang.Integer part, IActionEventHandler actionEventHandler)
          Perform the rename action of the file files
 

Uses of IFilm in org.stanwood.media.cli.manager
 

Methods in org.stanwood.media.cli.manager with parameters of type IFilm
protected  java.lang.Integer CLICopyStoreToStore.getFilmPart(java.io.File file, IFilm film)
           
 

Uses of IFilm in org.stanwood.media.model
 

Classes in org.stanwood.media.model that implement IFilm
 class Film
          This class is used to hold film related information
 

Uses of IFilm in org.stanwood.media.search
 

Methods in org.stanwood.media.search that return IFilm
static IFilm MediaSearcher.getFilm(MediaDirectory dir, java.io.File file, boolean useSources)
          Used to lookup film information
 

Methods in org.stanwood.media.search with parameters of type IFilm
static java.lang.Integer MediaSearcher.getFilmPart(MediaDirectory dir, java.io.File file, IFilm film)
          Used to get the part number of a film
 

Uses of IFilm in org.stanwood.media.source
 

Methods in org.stanwood.media.source that return IFilm
 IFilm HybridFilmSource.getFilm(java.lang.String filmId, java.net.URL url, java.io.File file)
          This will get a film from the source.
 IFilm ISource.getFilm(java.lang.String filmId, java.net.URL url, java.io.File filmFile)
          This will get a film from the source.
 

Uses of IFilm in org.stanwood.media.store
 

Methods in org.stanwood.media.store that return IFilm
 IFilm IStore.getFilm(java.io.File rootMediaDir, java.io.File filmFile, java.lang.String filmId)
          This will get a film from the store.
 IFilm SapphireStore.getFilm(java.io.File rootMediaDir, java.io.File filmFile, java.lang.String filmId)
          Always returns null as it is not implemented for this store.
 IFilm IStore.getFilm(MediaDirectory dir, java.io.File file)
          This is used to get a film from a store via it's file name.
 IFilm SapphireStore.getFilm(MediaDirectory dir, java.io.File file)
          This is used to get a film from a store via it's file name.
 

Methods in org.stanwood.media.store that return types with arguments of type IFilm
 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.
 

Methods in org.stanwood.media.store with parameters of type IFilm
 void IStore.cacheFilm(java.io.File rootMediaDir, java.io.File filmFile, IFilm film, java.lang.Integer part)
          This is used to write a film to the store.
 void SapphireStore.cacheFilm(java.io.File rootMediaDir, java.io.File filmFile, IFilm film, java.lang.Integer part)
          This is used to write a film to the store.
 

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

Methods in org.stanwood.media.store.memory that return IFilm
 IFilm MemoryStore.getFilm(java.io.File rootMediaDir, java.io.File filmFile, java.lang.String filmId)
          Used to read a film from the store.
 IFilm MemoryStore.getFilm(MediaDirectory dir, java.io.File file)
          This is used to get a film from a store via it's file name.
 

Methods in org.stanwood.media.store.memory that return types with arguments of type IFilm
 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.
 

Methods in org.stanwood.media.store.memory with parameters of type IFilm
 void MemoryStore.cacheFilm(java.io.File rootMediaDir, java.io.File filmFile, IFilm film, java.lang.Integer part)
          This is used to write a film to the store.
 

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

Methods in org.stanwood.media.store.mp4 that return IFilm
 IFilm MP4ITunesStore.getFilm(java.io.File rootMediaDir, java.io.File filmFile, java.lang.String filmId)
          Always returns null as it is not implemented for this store.
 IFilm MP4ITunesStore.getFilm(MediaDirectory dir, java.io.File file)
          This is used to get a film from a store via it's file name.
 

Methods in org.stanwood.media.store.mp4 that return types with arguments of type IFilm
 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.
 

Methods in org.stanwood.media.store.mp4 with parameters of type IFilm
 void MP4ITunesStore.cacheFilm(java.io.File rootMediaDir, java.io.File filmFile, IFilm film, java.lang.Integer part)
          This is used to write a film to the store.
static void MP4ITunesStore.updateFilm(Controller controller, IMP4Manager mp4Manager, java.io.File mp4File, IFilm film, java.lang.Integer part)
          Used to add atoms to a MP4 file that makes iTunes see it as a Film.
 

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

Methods in org.stanwood.media.store.mp4.itunes that return IFilm
 IFilm RemoteMacOSXItunesStore.getFilm(java.io.File rootMediaDir, java.io.File filmFile, java.lang.String filmId)
          This will get a film from the store.
 IFilm RemoteMacOSXItunesStore.getFilm(MediaDirectory dir, java.io.File file)
          This is used to get a film from a store via it's file name.
 

Methods in org.stanwood.media.store.mp4.itunes that return types with arguments of type IFilm
 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.
 

Methods in org.stanwood.media.store.mp4.itunes with parameters of type IFilm
 void RemoteMacOSXItunesStore.cacheFilm(java.io.File rootMediaDir, java.io.File filmFile, IFilm film, java.lang.Integer part)
          This is used to write a film to the store.
 

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

Classes in org.stanwood.media.store.xmlstore that implement IFilm
 class XMLFilm
          This is a Film object that talks directory to the DOM of the XML store
 

Methods in org.stanwood.media.store.xmlstore that return IFilm
 IFilm XMLStore2.getFilm(java.io.File rootMediaDir, java.io.File filmFile, java.lang.String filmId)
          This will get a film from the store.
 IFilm XMLStore2.getFilm(MediaDirectory dir, java.io.File file)
          This is used to get a film from a store via it's file name.
 

Methods in org.stanwood.media.store.xmlstore that return types with arguments of type IFilm
 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.
 

Methods in org.stanwood.media.store.xmlstore with parameters of type IFilm
 void XMLStore2.cacheFilm(java.io.File rootMediaDir, java.io.File filmFile, IFilm film, java.lang.Integer part)
          This is used to write a film to the store.