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

Packages that use IShow
org.stanwood.media   
org.stanwood.media.model   
org.stanwood.media.source   
org.stanwood.media.source.xbmc   
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 IShow in org.stanwood.media
 

Methods in org.stanwood.media that return IShow
 IShow MediaDirectory.getShow(java.io.File rootMediaDir, java.io.File episodeFile, SearchResult searchResult, boolean refresh)
          Get a show with a given show id and source id.
 

Methods in org.stanwood.media with parameters of type IShow
 ISeason MediaDirectory.getSeason(java.io.File rootMediaDir, java.io.File episodeFile, IShow show, int seasonNum, boolean refresh)
          Get a season with a given season number.
 

Uses of IShow in org.stanwood.media.model
 

Classes in org.stanwood.media.model that implement IShow
 class Show
          This is used to store and retrive information about shows
 

Methods in org.stanwood.media.model that return IShow
 IShow ISeason.getShow()
          Get the show the season belongs too
 IShow Season.getShow()
          Get the show the season belongs too
 

Constructors in org.stanwood.media.model with parameters of type IShow
Season(IShow show, int seasonNumber)
          The constructor used to create a instance of the season.
 

Uses of IShow in org.stanwood.media.source
 

Methods in org.stanwood.media.source that return IShow
 IShow ISource.getShow(java.lang.String showId, java.net.URL url, java.io.File file)
          This will get a show from the source.
 

Methods in org.stanwood.media.source with parameters of type IShow
 ISeason TagChimpSource.getSeason(IShow show, int seasonNum)
          This always returns null as this source does not support reading episodes.
 ISeason HybridFilmSource.getSeason(IShow show, int seasonNum)
          This always returns null as this source does not support reading episodes.
 ISeason ISource.getSeason(IShow show, int seasonNum)
          This will get a season from the source.
 

Uses of IShow in org.stanwood.media.source.xbmc
 

Methods in org.stanwood.media.source.xbmc with parameters of type IShow
 ISeason XBMCSource.getSeason(IShow show, int seasonNum)
          This will get a season from the source.
 

Uses of IShow in org.stanwood.media.store
 

Methods in org.stanwood.media.store that return IShow
 IShow IStore.getShow(java.io.File rootMediaDir, java.io.File episodeFile, java.lang.String showId)
          This will get a show from the store.
 IShow SapphireStore.getShow(java.io.File rootMediaDir, java.io.File episodeFile, java.lang.String showId)
          Always returns null as it is not implemented for this store.
 

Methods in org.stanwood.media.store with parameters of type IShow
 void IStore.cacheShow(java.io.File rootMediaDir, java.io.File episodeFile, IShow show)
          This is used to write a show too the store.
 void SapphireStore.cacheShow(java.io.File rootMediaDir, java.io.File episodeFile, IShow show)
          Does nothing as it is not implemented for this store
 ISeason IStore.getSeason(java.io.File rootMediaDir, java.io.File episodeFile, IShow show, int seasonNum)
          This will get a season from the store.
 Season SapphireStore.getSeason(java.io.File rootMediaDir, java.io.File episodeFile, IShow show, int seasonNum)
          Always returns null as it is not implemented for this store.
 

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

Classes in org.stanwood.media.store.memory that implement IShow
 class CacheShow
          Used to create a cache of the TV show data
 

Methods in org.stanwood.media.store.memory that return IShow
 IShow CacheSeason.getShow()
          Get the show the season belongs too
 

Methods in org.stanwood.media.store.memory with parameters of type IShow
 void MemoryStore.cacheShow(java.io.File rootMediaDir, java.io.File episodeFile, IShow show)
          This is used to write a show too the store.
 ISeason MemoryStore.getSeason(java.io.File rootMediaDir, java.io.File episodeFile, IShow show, int seasonNum)
          This will get the season from the store
 

Constructors in org.stanwood.media.store.memory with parameters of type IShow
CacheShow(IShow show)
          Used to create a instance of the cache show
 

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

Methods in org.stanwood.media.store.mp4 that return IShow
 IShow MP4ITunesStore.getShow(java.io.File rootMediaDir, java.io.File episodeFile, java.lang.String showId)
          This will always return null as this is a write only store
 

Methods in org.stanwood.media.store.mp4 with parameters of type IShow
 void MP4ITunesStore.cacheShow(java.io.File rootMediaDir, java.io.File episodeFile, IShow show)
          This does nothing as the show information can't be stored by this store
 ISeason MP4ITunesStore.getSeason(java.io.File rootMediaDir, java.io.File episodeFile, IShow show, int seasonNum)
          This will always return null as this is a write only store
 

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

Methods in org.stanwood.media.store.mp4.itunes that return IShow
 IShow RemoteMacOSXItunesStore.getShow(java.io.File rootMediaDir, java.io.File episodeFile, java.lang.String showId)
          This will get a show from the store.
 

Methods in org.stanwood.media.store.mp4.itunes with parameters of type IShow
 void RemoteMacOSXItunesStore.cacheShow(java.io.File rootMediaDir, java.io.File episodeFile, IShow show)
          This is used to write a show too the store.
 ISeason RemoteMacOSXItunesStore.getSeason(java.io.File rootMediaDir, java.io.File episodeFile, IShow show, int seasonNum)
          This will get a season from the store.
 

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

Classes in org.stanwood.media.store.xmlstore that implement IShow
 class XMLShow
          Used to store and get information about a show from a DOM show node
 

Methods in org.stanwood.media.store.xmlstore that return IShow
 IShow XMLSeason.getShow()
          Get the show the season belongs too
 IShow XMLStore2.getShow(java.io.File rootMediaDir, java.io.File episodeFile, java.lang.String showId)
          This will get a show from the store.
 

Methods in org.stanwood.media.store.xmlstore with parameters of type IShow
 void XMLStore2.cacheShow(java.io.File rootMediaDir, java.io.File episodeFile, IShow show)
          This is used to write a show too the store.
 ISeason XMLStore2.getSeason(java.io.File rootMediaDir, java.io.File episodeFile, IShow show, int seasonNum)
          This will get a season from the store.
 

Constructors in org.stanwood.media.store.xmlstore with parameters of type IShow
XMLSeason(IShow show, org.w3c.dom.Element seasonNode)
          The constructor