Uses of Class
com.evolution.player.core.media.MediaInfo

Packages that use MediaInfo
com.evolution.player.core.media   
com.evolution.player.core.media.loader   
com.evolution.player.core.media.search   
com.evolution.player.core.network   
com.evolution.player.ui.artwork   
 

Uses of MediaInfo in com.evolution.player.core.media
 

Classes in com.evolution.player.core.media with type parameters of type MediaInfo
 class MediaInfoBuilder<E extends MediaInfo>
          A media info builder can build a media info.
 

Subclasses of MediaInfo in com.evolution.player.core.media
 class LocalMediaInfo
          A media info based on a local file.
 

Methods in com.evolution.player.core.media that return MediaInfo
 MediaInfo ILibrary.getMedia(MediaId id)
          Returns the media with the given id, if any.
 

Methods in com.evolution.player.core.media that return types with arguments of type MediaInfo
static MediaInfoBuilder<MediaInfo> MediaInfoBuilder.createBuilder()
          Create a builder which does modify a data structure in memory.
 

Methods in com.evolution.player.core.media with parameters of type MediaInfo
 void ILibrary.addMedia(MediaInfo media)
          Adds the given media to the library.
static Album Album.createFromMedia(MediaInfo media)
          Create a new album from the given media info.
static Artist Artist.createFromMedia(MediaInfo info)
          Create a new artist from the given media info.
 boolean IBannedMedias.isBanned(MediaInfo media)
          Is the given media banned?
abstract  void ILibrary.LibraryListener.mediaAdded(MediaInfo media)
          The given media was added to the library.
abstract  void ILibrary.LibraryListener.mediaRemoved(MediaInfo media)
          The given media was removed from the library.
 

Uses of MediaInfo in com.evolution.player.core.media.loader
 

Subclasses of MediaInfo in com.evolution.player.core.media.loader
 class DownloadableMedia
          A media info which can be downloaded by a music loader.
 

Uses of MediaInfo in com.evolution.player.core.media.search
 

Methods in com.evolution.player.core.media.search that return MediaInfo
 MediaInfo IMediaSearchPattern.getMedia()
          The media to base the search upon.
 

Uses of MediaInfo in com.evolution.player.core.network
 

Methods in com.evolution.player.core.network that return MediaInfo
 MediaInfo FileTransfer.getMediaInfo()
          The transfered media.
 

Constructors in com.evolution.player.core.network with parameters of type MediaInfo
Download(MediaInfo media)
          Create a new download downloading the given media.
FileTransfer(MediaInfo media)
          Create a new file transfer transferring the given media
URLDownload(MediaInfo media, java.net.URL url, java.io.File targetFolder)
          Create a new url download downloading the given media.
 

Uses of MediaInfo in com.evolution.player.ui.artwork
 

Methods in com.evolution.player.ui.artwork with parameters of type MediaInfo
abstract  boolean AlbumArtworkProvider.canHandle(MediaInfo info)
          True if and only if this album artwork provider can provide album artwork for the given media info.
abstract  void AlbumArtworkDecorator.decorate(MediaInfo info, AlbumArtworkDecorator.IDecorationTarget target, IProgressMonitor monitor)
          Calculate the decorations and decorate the given target based on the given media info.
abstract  AlbumArtworkProvider.ArtworkSearchResult AlbumArtworkProvider.findArtwork(MediaInfo info, IProgressMonitor monitor)
          Search artwork for the given media info in a long running process report progress to the given monitor and check for cancelation.
abstract  AlbumArtworkProvider.ArtworkSearchSuccess AlbumArtworkProvider.getArtwork(MediaInfo info)
          Return an artwork for the given media info in a short running process.
abstract  void SongContextView.setCurrentSong(MediaInfo info)
          Set the current song info.