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

Packages that use LocalMediaInfo
com.evolution.player.core.media   
com.evolution.player.core.network   
com.evolution.player.ui   
com.evolution.player.ui.musicplayer   
 

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

Methods in com.evolution.player.core.media that return LocalMediaInfo
static LocalMediaInfo MediaInfo.create(java.io.File file)
          Create a media info from the given media file.
abstract  LocalMediaInfo EncryptingMusicProvider.decrypt(EncriptedMedia media, IProgressMonitor monitor)
          Decrypt the given media into a local media.
 LocalMediaInfo[] ILibrary.getMedias()
          Returns all found local medias.
 LocalMediaInfo[] IStructuredLibrary.getSongs(Album album)
          Returns all songs from the given album.
 LocalMediaInfo[] IStructuredLibrary.getSongs(Artist artist)
          Returns all songs from the given artist.
abstract  LocalMediaInfo MediaInfoProvider.parse(java.io.File file)
          Parse the given file and return a media info.
 

Methods in com.evolution.player.core.media that return types with arguments of type LocalMediaInfo
static MediaInfoBuilder<LocalMediaInfo> MediaInfoBuilder.createLocalBuilder(java.io.File file)
          Create a builder which does modify the given file if such a builder exist.
 

Methods in com.evolution.player.core.media with parameters of type LocalMediaInfo
abstract  boolean EncryptingMusicProvider.canEncrypt(LocalMediaInfo media)
          Can this provider encrypt the given media?
abstract  boolean MusicProvider.canHandle(LocalMediaInfo media)
          True if this music provider can verify the given media.
abstract  EncriptedMedia EncryptingMusicProvider.encrypt(LocalMediaInfo media)
          Encrypt the given media.
abstract  void ILibrary.LibraryListener.fileDownloaded(LocalMediaInfo media)
          The given media has been downloaded.
abstract  boolean MusicProvider.verify(LocalMediaInfo media, IProgressMonitor monitor)
          Verify that the given media is indeed provided by this music provider.
 

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

Methods in com.evolution.player.core.network that return LocalMediaInfo
abstract  LocalMediaInfo Download.download(IProgressMonitor monitor)
          Download FileTransfer.getMediaInfo() and return the downloaded media if the download succeeded, throws IOException if the download failed, returns null if the monitor was canceled.
 LocalMediaInfo URLDownload.download(IProgressMonitor monitor)
           
 

Uses of LocalMediaInfo in com.evolution.player.ui
 

Methods in com.evolution.player.ui that return types with arguments of type LocalMediaInfo
static IFilteredSelectionDialog<LocalMediaInfo> EvolutionPlayerUI.createSongSelectionDialog(Shell shell, boolean multiSelect)
          Create a dialog which allows to select any known song.
 

Uses of LocalMediaInfo in com.evolution.player.ui.musicplayer
 

Methods in com.evolution.player.ui.musicplayer that return LocalMediaInfo
 LocalMediaInfo IMusicPlayerController.getCurrent()
          Returns the song currently played.
 

Methods in com.evolution.player.ui.musicplayer with parameters of type LocalMediaInfo
abstract  boolean MusicPlayerProvider.canHandle(LocalMediaInfo info)
          True if this provider can create a music player which is able to play the given media.
abstract  MusicPlayer MusicPlayerProvider.createPlayer(LocalMediaInfo info)
          Return a new instance of a music player which is able to play the given media.
abstract  void MusicPlayer.open(LocalMediaInfo info, MusicPlayer.IStateCallback callback)
          Prepare this music player to start playing the given media.
 void IMusicPlayerController.play(LocalMediaInfo media)
          Start playing the given song.
abstract  void IMusicPlayerController.MusicPlayerControllerListener.playing(LocalMediaInfo media)
          The music player has started playing the given media.
 void IMusicPlayerController.pushSong(LocalMediaInfo media)
          Push the given media to the next play list.