|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Playlist in org.musicontroller.core |
---|
Methods in org.musicontroller.core that return Playlist | |
---|---|
static Playlist |
Playlist.createInstance(Song song)
Constructs a playlist containing the song passed in the parameter. |
Playlist |
Contract_PS.getPlaylist()
|
Playlist |
Playlist.getPrevious()
|
Methods in org.musicontroller.core with parameters of type Playlist | |
---|---|
void |
Contract_PS.setPlaylist(Playlist playlist)
|
void |
Playlist.setPrevious(Playlist playlist)
You can set this property to a non-null value, to indicate the previous state of this playlist. |
Uses of Playlist in org.musicontroller.core.searching |
---|
Methods in org.musicontroller.core.searching with parameters of type Playlist | |
---|---|
org.apache.lucene.document.Document |
Indexer.reindexPlaylist(Playlist playlist)
|
Uses of Playlist in org.musicontroller.dao |
---|
Methods in org.musicontroller.dao that return Playlist | |
---|---|
protected Playlist |
HibernateDao.getForgottenSongs(IUser user)
Lists a maximum amount of 25 Songs, with the following properties: The Songs have not been played, skipped, downloaded or requested at all during the last two years. The Songs have been played at least 10 times. The list is ordered to the plays/year ratio. |
Playlist |
HibernateDao.getNeighbours(long songid,
IUser user)
|
Playlist |
Dao.getNeighbours(long songid,
IUser user)
Returns a Playlist containing Songs that are neighbours of the given Song and User. |
Playlist |
HibernateDao.getPlaylistById(long id,
IUser user)
|
Playlist |
Dao.getPlaylistById(long playlistid,
IUser user)
Returns a specific Playlist |
Playlist |
HibernateDao.getPlaylistByName(java.lang.String name)
|
Playlist |
Dao.getPlaylistByName(java.lang.String name)
Retrieves the Playlist with the given name from the database. |
Playlist |
HibernateDao.songsByBand(long bandid)
|
Playlist |
Dao.songsByBand(long bandid)
|
Playlist |
HibernateDao.songsByKeyword(long keywordid)
|
Playlist |
Dao.songsByKeyword(long keywordid)
|
Playlist |
HibernateDao.songsByKeywordbags(java.util.List<Keywordbag> bags,
IUser user,
int maxResults)
|
Playlist |
Dao.songsByKeywordbags(java.util.List<Keywordbag> bags,
IUser user,
int maxResults)
Generates a Playlist containing songs that belong to the specified Keywordbags. |
Playlist |
HibernateDao.songsByKeywordIds(java.util.List<java.lang.Long> keywordIds,
IUser user)
|
Playlist |
Dao.songsByKeywordIds(java.util.List<java.lang.Long> keywordIds,
IUser user)
|
Playlist |
HibernateDao.songsByKeywords(java.util.List<Keyword> keywords,
IUser user)
|
Playlist |
Dao.songsByKeywords(java.util.List<Keyword> keywords,
IUser user)
|
Methods in org.musicontroller.dao that return types with arguments of type Playlist | |
---|---|
java.util.List<Playlist> |
HibernateDao.listPlaylists()
|
java.util.List<Playlist> |
Dao.listPlaylists()
Lists all Playlists. |
java.util.List<Playlist> |
HibernateDao.listPlaylists(Band band)
|
java.util.List<Playlist> |
Dao.listPlaylists(Band band)
Lists all playlists on which a band is present. |
java.util.List<Playlist> |
HibernateDao.listPlaylists(Song song)
|
java.util.List<Playlist> |
Dao.listPlaylists(Song song)
|
java.util.List<Playlist> |
HibernateDao.listPodcasts()
|
java.util.List<Playlist> |
Dao.listPodcasts()
Lists all Playlists that contain Podcasts. |
java.util.List<Playlist> |
HibernateDao.searchPlaylist(java.lang.String playlistname)
|
java.util.List<Playlist> |
Dao.searchPlaylist(java.lang.String playlistname)
Find a playlist matching the given name. |
Methods in org.musicontroller.dao with parameters of type Playlist | |
---|---|
static java.util.List<AiRelationBean> |
BagAndKeywordUtils.buildAiRelationBeanList(Playlist playlist)
Constructs a list of AiRelationBean objects from a playlist. |
void |
HibernateDao.mergePlaylists(Playlist keep,
Playlist delete)
|
void |
Dao.mergePlaylists(Playlist keep,
Playlist delete)
Merge the two playlists into one. |
void |
HibernateDao.save(Playlist playlist)
|
void |
Dao.save(Playlist playlist)
Persist the properties of this playlist. |
Uses of Playlist in org.musicontroller.gui |
---|
Methods in org.musicontroller.gui that return Playlist | |
---|---|
Playlist |
Keywords.getMatchingSongs()
|
Playlist |
SongInfo.getNeighbours()
Returns a playlist with all song neighbours of the song displayed. |
abstract Playlist |
Search.getPlaylist()
|
Playlist |
PlaylistInfo.getPlaylist()
Used when rendering the page |
Playlist |
BandInfo.getSonglist()
|
Playlist |
Home.getUpcoming()
|
Methods in org.musicontroller.gui that return types with arguments of type Playlist | |
---|---|
java.util.List<Playlist> |
SongInfo.getPlaylists()
|
java.util.List<Playlist> |
BandInfo.getPlaylists()
|
java.util.List<Playlist> |
Podcasts.getPodcasts()
|
Methods in org.musicontroller.gui with parameters of type Playlist | |
---|---|
abstract void |
Search.setPlaylist(Playlist playlist)
|
Uses of Playlist in org.musicontroller.gui.components |
---|
Methods in org.musicontroller.gui.components that return Playlist | |
---|---|
abstract Playlist |
SongList.getList()
|
abstract Playlist |
PlaylistReviews.getPlaylist()
|
abstract Playlist |
PlaylistLink.getPlaylist()
|
abstract Playlist |
AIList.getPlaylist()
|
Methods in org.musicontroller.gui.components that return types with arguments of type Playlist | |
---|---|
java.util.List<Playlist> |
SongList.getPlaylist()
Returns the playlist the current song appears on. |
Methods in org.musicontroller.gui.components with parameters of type Playlist | |
---|---|
abstract void |
SongList.setList(Playlist playlist)
|
abstract void |
PlaylistReviews.setPlaylist(Playlist playlist)
|
abstract void |
PlaylistLink.setPlaylist(Playlist playlist)
|
Uses of Playlist in org.musicontroller.gui.edit |
---|
Methods in org.musicontroller.gui.edit that return Playlist | |
---|---|
Playlist |
PlaylistEdit.getPlaylist()
Lazily loads the playlist using the playlist id. |
abstract Playlist |
CoverArtEdit.getPlaylist()
|
Playlist |
BandEdit.getSonglist()
|
Methods in org.musicontroller.gui.edit that return types with arguments of type Playlist | |
---|---|
java.util.List<Playlist> |
SongEdit.getPlaylists()
Returns the list of playlists this song occurs in. |
java.util.List<Playlist> |
BandEdit.getPlaylists()
|
Methods in org.musicontroller.gui.edit with parameters of type Playlist | |
---|---|
static TrackList |
TrackList.createInstance(Playlist playlist)
Factory method creates a tracklist containing all tracks in the playlist. |
abstract void |
CoverArtEdit.setPlaylist(Playlist playlist)
|
Uses of Playlist in org.musicontroller.rss |
---|
Methods in org.musicontroller.rss that return Playlist | |
---|---|
Playlist |
RssDAO.readPlaylistFromRss(java.io.InputStream in)
Reads an InputStream (which has to contain a podcast-rss stream), converts it into a Playlist. |
Playlist |
RssDAO.readPlaylistFromRss(java.lang.String url)
Reads a Playlist from a URL, which contains a podcast-rss. |
Methods in org.musicontroller.rss with parameters of type Playlist | |
---|---|
java.lang.String |
MetadataProvider.getCoverUrl(Playlist playlist)
Returns the URL where the CoverArt of the Playlist can be found. |
java.lang.String |
MetadataProvider.getRssUrl(Playlist playlist)
Returns the URL (as String) which links to the RSS-link for a Playlist. |
java.lang.String |
MetadataProvider.getUrl(Playlist playlist)
Returns the URL (as String) which links to information page of a Playlist. |
void |
RssDAO.merge(Playlist original,
Playlist fromrss)
Merges two Playlists. |
void |
RssDAO.writePlaylistRSS(Playlist playlist,
java.io.OutputStream out,
MetadataProvider provider)
Writes a Playlist to an Outputstream as a Podcast-xml. |
Uses of Playlist in org.musicontroller.service |
---|
Methods in org.musicontroller.service that return Playlist | |
---|---|
Playlist |
McServiceImpl.createPlaylist(java.lang.String playlistname)
|
Playlist |
McService.createPlaylist(java.lang.String playlistname)
Creates a playlist with the given name. |
Playlist |
McServiceImpl.getPlaylistById(long playlistid)
|
Playlist |
McService.getPlaylistById(long playlistid)
Retrieves the playlist with the specified id. |
Playlist |
McServiceImpl.getSongNeighbours(Song song,
IUser user)
|
Playlist |
McService.getSongNeighbours(Song song,
IUser user)
Returns a playlist of songs that were played to a user close before or after a song. |
Playlist |
McServiceImpl.getSongsByBand(Band band)
|
Playlist |
McService.getSongsByBand(Band band)
Returns a playlist with all songs played by the band. |
Playlist |
McServiceImpl.getUpcoming(long userid)
|
Playlist |
McService.getUpcoming(long userid)
Return a playlist with a prediction of the next 6 songs the DJ will play for the specified user. |
Playlist |
McServiceImpl.songsByKeywordbags(java.util.List<Keywordbag> bags,
User user,
int maxResults)
|
Playlist |
McService.songsByKeywordbags(java.util.List<Keywordbag> bags,
User user,
int i)
Generates a Playlist containing songs that belong to the specified Keywordbags. |
Methods in org.musicontroller.service that return types with arguments of type Playlist | |
---|---|
java.util.List<Playlist> |
McServiceImpl.findImportedPlaylist(MusicArchiveBean archive)
|
java.util.List<Playlist> |
McService.findImportedPlaylist(MusicArchiveBean archive)
Tries to find persistent playlists that matches the playlist name of 1 or more entries in the music archive. |
java.util.List<Playlist> |
McServiceImpl.getBandPlaylists(Band band)
|
java.util.List<Playlist> |
McService.getBandPlaylists(Band band)
Returns a list of playlists containing at least one song by this band. |
java.util.List<Playlist> |
McServiceImpl.getSongPlaylists(Song song)
|
java.util.List<Playlist> |
McService.getSongPlaylists(Song song)
Returns a list of playlist containing the song. |
java.util.Set<Playlist> |
McServiceImpl.guessPlaylistsInArchive(MusicArchiveBean archive)
|
java.util.Set<Playlist> |
McService.guessPlaylistsInArchive(MusicArchiveBean archive)
Compile a set of persistent playlists that could be the same as the contents of the music archive. |
java.util.List<Playlist> |
McServiceImpl.searchPlaylistByName(java.lang.String playlistName)
|
java.util.List<Playlist> |
McService.searchPlaylistByName(java.lang.String playlistName)
Returns a list of playlists with the same name as the parameter. |
Methods in org.musicontroller.service with parameters of type Playlist | |
---|---|
void |
McServiceImpl.addKeywordsToPlaylist(Playlist playlist,
java.lang.String keywords,
TrackList tracks)
|
void |
McService.addKeywordsToPlaylist(Playlist playlist,
java.lang.String keywords,
TrackList tracks)
Adds the keywords in the comma separated list to the playlist. |
void |
McServiceImpl.addMusician(Playlist playlist,
java.lang.String artistfirstname,
java.lang.String artistlastname,
java.lang.String instruments,
java.lang.String tracks)
|
void |
McService.addMusician(Playlist playlist,
java.lang.String artistfirstname,
java.lang.String artistlastname,
java.lang.String instruments,
java.lang.String tracks)
Adds the artist as a performer to all songs in the playlist, playing the specified instruments. |
void |
McServiceImpl.addSongToPlaylist(Song song,
Playlist playlist,
int songIndex)
|
void |
McService.addSongToPlaylist(Song song,
Playlist playlist,
int songIndex)
Adds the song to the playlist at the given song index. |
java.util.List<PlaylistMergeBean> |
McServiceImpl.constructMergeBeanList(Playlist playlist)
|
java.util.List<PlaylistMergeBean> |
McService.constructMergeBeanList(Playlist playlist)
Construct a list of PlaylistMergeBean objects. |
java.util.List<SongBean> |
McServiceImpl.constructSongBeanList(Playlist playlist)
|
java.util.List<SongBean> |
McService.constructSongBeanList(Playlist playlist)
Construct a list with a SongBean object for each song in the playlist. |
void |
McServiceImpl.deleteMusician(Playlist playlist,
java.lang.String artistfirstname,
java.lang.String artistlastname,
java.lang.String instruments,
java.lang.String tracks)
|
void |
McService.deleteMusician(Playlist playlist,
java.lang.String artistfirstname,
java.lang.String artistlastname,
java.lang.String instruments,
java.lang.String tracks)
Removes the artist-instrument relations specified by the argument from every song in the playlist. |
void |
McServiceImpl.editSongsOfPlaylist(Playlist playlist,
java.util.List<SongBean> songbeans)
|
void |
McService.editSongsOfPlaylist(Playlist playlist,
java.util.List<SongBean> songbeans)
Edit song properties according to the new values stored in the songbeans in the supplied list. |
java.util.Collection<CoverArtSearchResult> |
McServiceImpl.getCoverArtList(Playlist playlist)
|
java.util.Collection<CoverArtSearchResult> |
McService.getCoverArtList(Playlist playlist)
Returns a list of available cover art for the playlist. |
java.util.Set<Comment> |
McServiceImpl.getReviews(Playlist playlist)
|
java.util.Set<Comment> |
McService.getReviews(Playlist playlist)
Returns a (possibly empty) sorted set of reviews for a Playlist. |
void |
McServiceImpl.mergePlaylist(Playlist playlist,
IUser user,
java.util.List<PlaylistMergeBean> mergeBeanList)
|
void |
McService.mergePlaylist(Playlist playlist,
IUser user,
java.util.List<PlaylistMergeBean> mergeBeanList)
Merge the playlist with the playlist in the list of beans that have the mergeIndicator set. |
void |
McServiceImpl.removeKeywordsFromPlaylist(Playlist playlist,
java.lang.String keywords,
TrackList tracks)
|
void |
McService.removeKeywordsFromPlaylist(Playlist playlist,
java.lang.String keywords,
TrackList tracks)
Removes the keywords in the comma separated list from the playlist. |
void |
McServiceImpl.setPlaylistCoverArt(Playlist playlist,
CoverArtSearchResult selected)
|
void |
McService.setPlaylistCoverArt(Playlist playlist,
CoverArtSearchResult selected)
Use the image in the CoverArtSearchResult to update the coverart for the playlist. |
void |
McServiceImpl.setPlaylistProperties(Playlist playlist,
java.lang.String playlistName,
java.util.Date releaseDate)
|
void |
McService.setPlaylistProperties(Playlist playlist,
java.lang.String name,
java.util.Date releaseDate)
Edit basic playlist properties: name and releasedate. |
Uses of Playlist in org.varienaja.comments |
---|
Methods in org.varienaja.comments with parameters of type Playlist | |
---|---|
protected void |
CommentService.enhanceComment(Comment review,
Playlist playlist)
Uses the information of the Playlist to enhance its Reviews. |
java.util.Set<Comment> |
CommentService.getComments(Playlist playlist)
Gets the Comments for a certain Playlist. |
java.util.List<Comment> |
AmazonCommentService.getComments(Playlist playlist)
Queries Amazon for Editorial and Customer Comments, and returns them in the MusiContronner-format. |
boolean |
CommentService.refreshComments(Playlist playlist)
Refreshes the Comments for a Playlist. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |