Uses of Interface
com.tagtraum.audiokern.PlayList
-
Packages that use PlayList Package Description com.tagtraum.audiokern Core audio classes for decoding, playing and analyzing audio data.com.tagtraum.beatunes Application for analyzing songs and sorting them based on how they match each other.com.tagtraum.beatunes.action Contains all significant actions.com.tagtraum.beatunes.action.standard Standard actions like "Create Playlist".com.tagtraum.beatunes.analysisqueue Provides an implementation for the analysis queue and its UI.com.tagtraum.beatunes.charts Amazon charts UI code.com.tagtraum.beatunes.filter Provides classes for Swing JTable filtering and sorting.com.tagtraum.beatunes.library Classes that load and manage the library.com.tagtraum.beatunes.library.filesystem Implementation of a file system based music library.com.tagtraum.beatunes.library.itunes Implementation of an iTunes-based music library.com.tagtraum.beatunes.library.plain "Plain" library that does not have side-effects.com.tagtraum.beatunes.library.playlistexporter Playlist exporter implementations.com.tagtraum.beatunes.matchtable Everything that has to do with matching.com.tagtraum.beatunes.onlinedb Classes for accessing the online database.com.tagtraum.beatunes.playlisttree Classes for the main source (tree) view, found on the left side of the main UI.com.tagtraum.beatunes.songtable com.tagtraum.ubermusic Classes to lookup meta (über) information about music files.com.tagtraum.ubermusic.amazon Offers access to Amazon and basic caching infrastructure.com.tagtraum.ubermusic.beatport -
-
Uses of PlayList in com.tagtraum.audiokern
Classes in com.tagtraum.audiokern that implement PlayList Modifier and Type Class Description class
ReadOnlyPlayList
Read-only base class forPlayList
.Methods in com.tagtraum.audiokern that return PlayList Modifier and Type Method Description PlayList
PlayList. getParentPlayList()
PlayList[]
PlayList. getPlayListPath()
Returns path leading to this playlist and ending with it.Methods in com.tagtraum.audiokern that return types with arguments of type PlayList Modifier and Type Method Description List<PlayList>
PlayList. getChildPlayLists()
Methods in com.tagtraum.audiokern with parameters of type PlayList Modifier and Type Method Description void
PlayList. setParentPlayList(PlayList parentPlayList)
void
ReadOnlyPlayList. setParentPlayList(PlayList parentPlayList)
Method parameters in com.tagtraum.audiokern with type arguments of type PlayList Modifier and Type Method Description void
PlayList. setChildPlayLists(List<PlayList> childPlayLists)
void
ReadOnlyPlayList. setChildPlayLists(List<PlayList> childPlayLists)
-
Uses of PlayList in com.tagtraum.beatunes
Methods in com.tagtraum.beatunes that return PlayList Modifier and Type Method Description PlayList
PlayListComboBoxModel. getElementAt(int index)
PlayList
SongContextMenu. getPlayList()
Methods in com.tagtraum.beatunes with parameters of type PlayList Modifier and Type Method Description File
PlayListExporterComponent. exportPlayList(PlayList playList, ProgressListener progressListener)
File
PlayListExporterComponent. getActualFile(PlayList[] path)
Icon
BeaTunes. getIcon(PlayList playList)
Provides aPlayList
icon.Icon
BeaTunes. getLightnessAdjustedIcon(PlayList playList)
Provides aPlayList
icon that has been adjusted to the theme's lightness.Icon
BeaTunes. getLightnessAdjustedSmallIcon(PlayList playList)
Provides aPlayList
icon that has been adjusted to the theme's lightness.Icon
BeaTunes. getSmallIcon(PlayList playList)
Provides a smallPlayList
icon.void
MainWindow. select(PlayList playList, long id)
Selects the given playlist and also the given song in it.void
SongContextMenu. setPlayList(PlayList playList)
-
Uses of PlayList in com.tagtraum.beatunes.action
Methods in com.tagtraum.beatunes.action that return PlayList Modifier and Type Method Description PlayList
BaseAction. getFocusedPlayList()
Returns the playlist selected AND focused in the tree view.PlayList
BaseAction. getSelectedPlayList()
Returns the playlist selected in the tree view whether the tree view has the focus or notMethods in com.tagtraum.beatunes.action with parameters of type PlayList Modifier and Type Method Description protected DefaultMutableTreeNode
BaseAction. getPlayListTreeNode(PlayList beaTunesPlayList)
-
Uses of PlayList in com.tagtraum.beatunes.action.standard
Methods in com.tagtraum.beatunes.action.standard that return PlayList Modifier and Type Method Description protected PlayList
NewFolderAction. createEmptyPlayList()
protected PlayList
NewPlayListAction. createEmptyPlayList()
Create the empty (but persistent)PlayList
object.PlayList
AddToPlayListAction. getPlayList()
PlayList
ExportPlayListAction. getPlayList()
PlayList
ImportPlayListAction. importPlayList(PlayListFile playListFile)
Methods in com.tagtraum.beatunes.action.standard that return types with arguments of type PlayList Modifier and Type Method Description BiFunction<PlayList,List<AudioSong>,List<AudioSong>>
ReArrangePlayListAction. getReArrangeFunction()
Returns thereArrangeFunction
, aBiFunction
that takes both the playlist and its songs as arguments and returns the songs in a new order.Methods in com.tagtraum.beatunes.action.standard with parameters of type PlayList Modifier and Type Method Description void
AnalyzeAction. analyze(PlayList playList)
Analyze the given playlist.static AddToPlayListAction[]
AddToPlayListAction. create(BeaTunes application, List<Long> ids, PlayList excludePlayList)
static ShowInPlayListAction[]
ShowInPlayListAction. create(BeaTunes beaTunes, AudioSong audioSong, PlayList excludePLayList)
boolean
NewEmptyPlayListAction. fillPlayList(PlayList newPlayList, long[] selectedSongIds)
boolean
NewFolderAction. fillPlayList(PlayList newPlayList, long[] selectedSongIds)
abstract boolean
NewPlayListAction. fillPlayList(PlayList newPlayList, long[] selectedSongIds)
This method is called by the action as part of itsNewPlayListAction.actionPerformed(ActionEvent)
method.boolean
NewPlayListFromSelectionAction. fillPlayList(PlayList newPlayList, long[] selectedSongIds)
void
ReArrangePlayListAction. reArrangePlayList(PlayList playList, long[] selectedSongIds)
You may override this method to provide a custom implementation for playlist re-arrangement.void
AddToPlayListAction. setPlayList(PlayList playList)
void
ExportPlayListAction. setPlayList(PlayList playList)
void
ShowInPlayListAction. setPlayList(PlayList playList)
Method parameters in com.tagtraum.beatunes.action.standard with type arguments of type PlayList Modifier and Type Method Description void
ReArrangePlayListAction. setReArrangeFunction(BiFunction<PlayList,List<AudioSong>,List<AudioSong>> reArrangeFunction)
Constructor parameters in com.tagtraum.beatunes.action.standard with type arguments of type PlayList Constructor Description ReArrangePlayListAction(BeaTunes application, BiFunction<PlayList,List<AudioSong>,List<AudioSong>> reArrangeFunction)
-
Uses of PlayList in com.tagtraum.beatunes.analysisqueue
Methods in com.tagtraum.beatunes.analysisqueue with parameters of type PlayList Modifier and Type Method Description void
AnalysisQueue. offer(PlayList playlist, TaskFactory taskFactory, boolean filterTasks, Runnable... runAfterOfferComplete)
Offer a playlist to the queue. -
Uses of PlayList in com.tagtraum.beatunes.charts
Methods in com.tagtraum.beatunes.charts that return PlayList Modifier and Type Method Description PlayList
ChartEntry. getPlaylist()
PlayList
ChartPanel. getPlayList()
Constructors in com.tagtraum.beatunes.charts with parameters of type PlayList Constructor Description ChartPanel(BeaTunes application, PlayList playList)
-
Uses of PlayList in com.tagtraum.beatunes.filter
Methods in com.tagtraum.beatunes.filter that return PlayList Modifier and Type Method Description PlayList
PlayListSorter. getPlaylist()
Methods in com.tagtraum.beatunes.filter with parameters of type PlayList Modifier and Type Method Description void
PlayListSorter. setPlaylist(PlayList playlist)
-
Uses of PlayList in com.tagtraum.beatunes.library
Classes in com.tagtraum.beatunes.library that implement PlayList Modifier and Type Class Description class
HibernatePlayList
Playlist backed by Hibernate.class
PlayListFacade
PlayListFacade.Fields in com.tagtraum.beatunes.library declared as PlayList Modifier and Type Field Description protected PlayList
PlayListFacade. playList
Methods in com.tagtraum.beatunes.library that return PlayList Modifier and Type Method Description PlayList
HibernateMediaLibrary. createFolder()
PlayList
HibernateMediaLibrary. createFolder(Long parentId)
PlayList
MediaLibrary. createFolder()
Creates a new folder under the Music playlist/folder.PlayList
MediaLibrary. createFolder(Long parentId)
Creates a new folder at a specific location.PlayList
HibernateMediaLibrary. createPlayList(Long id, Long parentId, String name, boolean folder)
PlayList
HibernateMediaLibrary. createPlayList(Long parentId, String name)
PlayList
HibernateMediaLibrary. createPlayList(String name)
PlayList
MediaLibrary. createPlayList(Long id, Long parentId, String name, boolean folder)
Creates a newPlayList
object with the given name and id.PlayList
MediaLibrary. createPlayList(Long parentId, String name)
Creates a new PlayList at a specific location.PlayList
MediaLibrary. createPlayList(String name)
Creates a new PlayList under the Music playlist/folder.PlayList
HibernateMediaLibrary. getLibrary()
PlayList
MediaLibrary. getLibrary()
Returns the master playlist that contains all library objects.PlayList
HibernatePlayList. getParentPlayList()
PlayList
PlayListFacade. getParentPlayList()
PlayList
AbstractMediaLibrary. getPlayList(long id)
PlayList
MediaLibrary. getPlayList(long playListPersistentId)
Get aPlayList
for an id.PlayList
PlayListFacade. getPlayList()
Gets thePlayList
this playlist is a facade for.PlayList[]
HibernatePlayList. getPlayListPath()
PlayList[]
PlayListFacade. getPlayListPath()
abstract PlayList
LibraryDescriptor. wrap(PlayList playList)
Wraps an internal database playlist into anotherPlayList
that is capable of writing/reading data to external databases or files.Methods in com.tagtraum.beatunes.library that return types with arguments of type PlayList Modifier and Type Method Description List<PlayList>
HibernatePlayList. getChildPlayLists()
List<PlayList>
PlayListFacade. getChildPlayLists()
List<PlayList>
HibernateMediaLibrary. getPlayLists()
List<PlayList>
MediaLibrary. getPlayLists()
List of all playlists.Collection<PlayList>
Song. getPlayLists()
Returns playlists the song belongs to.Methods in com.tagtraum.beatunes.library with parameters of type PlayList Modifier and Type Method Description void
PlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)
Exports the given playlist to the given file.void
HibernatePlayList. setParentPlayList(PlayList value)
void
HibernateMediaLibrary. store(PlayList playList)
void
MediaLibrary. store(PlayList playList)
Stores a playlist in the beaTunes database.abstract PlayList
LibraryDescriptor. wrap(PlayList playList)
Wraps an internal database playlist into anotherPlayList
that is capable of writing/reading data to external databases or files.Method parameters in com.tagtraum.beatunes.library with type arguments of type PlayList Modifier and Type Method Description void
HibernatePlayList. setChildPlayLists(List<PlayList> childPlayLists)
void
HibernateMediaLibrary. setPlayLists(List<PlayList> playLists)
Constructors in com.tagtraum.beatunes.library with parameters of type PlayList Constructor Description PlayListFacade(PlayList playList, MediaLibrary musicLibrary)
-
Uses of PlayList in com.tagtraum.beatunes.library.filesystem
Classes in com.tagtraum.beatunes.library.filesystem that implement PlayList Modifier and Type Class Description class
FileSystemPlayList
File system based playlist.Methods in com.tagtraum.beatunes.library.filesystem that return PlayList Modifier and Type Method Description PlayList
FileSystemLibraryDescriptor. wrap(PlayList playList)
Methods in com.tagtraum.beatunes.library.filesystem with parameters of type PlayList Modifier and Type Method Description void
FileSystemPlayList. setParentPlayList(PlayList value)
PlayList
FileSystemLibraryDescriptor. wrap(PlayList playList)
Method parameters in com.tagtraum.beatunes.library.filesystem with type arguments of type PlayList Modifier and Type Method Description void
FileSystemPlayList. setChildPlayLists(List<PlayList> value)
Constructors in com.tagtraum.beatunes.library.filesystem with parameters of type PlayList Constructor Description FileSystemPlayList(PlayList playList, MediaLibrary mediaLibrary)
-
Uses of PlayList in com.tagtraum.beatunes.library.itunes
Classes in com.tagtraum.beatunes.library.itunes that implement PlayList Modifier and Type Class Description class
ITunesPlayList
ITunesPlayList.Methods in com.tagtraum.beatunes.library.itunes that return PlayList Modifier and Type Method Description PlayList
ITLibraryDescriptor. wrap(PlayList playList)
PlayList
ITunesLibraryDescriptor. wrap(PlayList playList)
Methods in com.tagtraum.beatunes.library.itunes that return types with arguments of type PlayList Modifier and Type Method Description List<PlayList>
HibernateITunesLibraryParser. getPlayLists()
Methods in com.tagtraum.beatunes.library.itunes with parameters of type PlayList Modifier and Type Method Description static void
ITunesPlayListBinder. bind(PlayList playList, Map<String,Object> playListPropertyMap)
Copy properties from a givenplayListPropertyMap
to the givenplayList
.void
ITunesPlayList. setParentPlayList(PlayList value)
PlayList
ITLibraryDescriptor. wrap(PlayList playList)
PlayList
ITunesLibraryDescriptor. wrap(PlayList playList)
Method parameters in com.tagtraum.beatunes.library.itunes with type arguments of type PlayList Modifier and Type Method Description void
ITunesPlayList. setChildPlayLists(List<PlayList> childPlayLists)
Constructors in com.tagtraum.beatunes.library.itunes with parameters of type PlayList Constructor Description ITunesPlayList(PlayList playList, MediaLibrary musicLibrary)
ITunesPlaylistModifier(MediaLibrary musicLibrary, PlayList targetPlayList)
-
Uses of PlayList in com.tagtraum.beatunes.library.plain
Methods in com.tagtraum.beatunes.library.plain that return PlayList Modifier and Type Method Description PlayList
PlainLibraryDescriptor. wrap(PlayList playList)
Methods in com.tagtraum.beatunes.library.plain with parameters of type PlayList Modifier and Type Method Description PlayList
PlainLibraryDescriptor. wrap(PlayList playList)
-
Uses of PlayList in com.tagtraum.beatunes.library.playlistexporter
Methods in com.tagtraum.beatunes.library.playlistexporter with parameters of type PlayList Modifier and Type Method Description void
CratePlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)
void
CSVPlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)
void
M3U8PlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)
void
PLSv2PlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)
void
WPLPlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)
void
XSPFPlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)
-
Uses of PlayList in com.tagtraum.beatunes.matchtable
Methods in com.tagtraum.beatunes.matchtable that return PlayList Modifier and Type Method Description PlayList
MatchTable. getPlayList()
Returns the source playlist we want to find matches in.Methods in com.tagtraum.beatunes.matchtable with parameters of type PlayList Modifier and Type Method Description Iterable<AudioSong>
RuleBasedPrefilter. getPreFilteredSongs(AudioSong template, PlayList playList, Float syncBPM, boolean playMatchesAtSyncTempo, Collection<ScoreRule> scoreRules, Collection<SongFilter> mandatoryFilters)
Returns songs from the database that roughly match the template song. -
Uses of PlayList in com.tagtraum.beatunes.onlinedb
Methods in com.tagtraum.beatunes.onlinedb with parameters of type PlayList Modifier and Type Method Description static String
JSONPlayListSerializer. toJSONString(PlayList playList)
-
Uses of PlayList in com.tagtraum.beatunes.playlisttree
Methods in com.tagtraum.beatunes.playlisttree that return PlayList Modifier and Type Method Description PlayList
PlayListTreeModel.PlayListUO. getPlayList()
PlayList
PlayListTree. getSelectedPlayList()
Returns the PlayList selected in the tree view whether the tree view has the focus or notPlayList
PlayListTree. getSelectedPlayListsParentFolder()
Parent folder of the currently selected playlist or the selected folder itself.PlayList
PlayListTreeModel.PlayListUO. getUserObject()
Methods in com.tagtraum.beatunes.playlisttree that return types with arguments of type PlayList Modifier and Type Method Description List<PlayList>
PlayListTreeModel. getPlayLists()
Methods in com.tagtraum.beatunes.playlisttree with parameters of type PlayList Modifier and Type Method Description void
PlayListTree. addPlaylist(PlayList beaTunesPlayList)
Adds a playlist to the tree in beaTunes in the currently selected folder.void
PlayListTree. addPlaylist(PlayList beaTunesPlayList, PlayList parentSibling)
Adds a playlist to the tree in beaTunes.void
PlayListTreeModel. addPlayList(PlayList playList, PlayList parent)
void
PlayListTreeModel. deletePlayList(PlayList playList)
DefaultMutableTreeNode
PlayListTreeModel. getPlayListTreeNode(PlayList playList)
Method parameters in com.tagtraum.beatunes.playlisttree with type arguments of type PlayList Modifier and Type Method Description void
PlayListTree. setPlayLists(List<PlayList> playLists)
Refreshes all models.void
PlayListTreeModel. setPlayLists(List<PlayList> thePlayLists)
Set a new set of playlists.Constructors in com.tagtraum.beatunes.playlisttree with parameters of type PlayList Constructor Description PlayListUO(DefaultTreeModel model, PlayList playList, Icon icon)
-
Uses of PlayList in com.tagtraum.beatunes.songtable
Methods in com.tagtraum.beatunes.songtable that return PlayList Modifier and Type Method Description PlayList
PlayListImage. getPlayList()
PlayList
SongTableModel. getPlayList()
Currently displayed playlist.Methods in com.tagtraum.beatunes.songtable with parameters of type PlayList Modifier and Type Method Description void
PlayListImage. setPlayList(PlayList playList)
void
SongTableModel. setPlayList(PlayList playList)
-
Uses of PlayList in com.tagtraum.ubermusic
Methods in com.tagtraum.ubermusic that return types with arguments of type PlayList Modifier and Type Method Description List<PlayList>
Charts. getCharts(Locale market)
List<PlayList>
NewReleases. getNewReleases(Locale market)
-
Uses of PlayList in com.tagtraum.ubermusic.amazon
Classes in com.tagtraum.ubermusic.amazon that implement PlayList Modifier and Type Class Description class
AmazonPlayList
AmazonPlayList.Methods in com.tagtraum.ubermusic.amazon that return PlayList Modifier and Type Method Description PlayList
AmazonPlayList. getParentPlayList()
PlayList[]
AmazonPlayList. getPlayListPath()
Methods in com.tagtraum.ubermusic.amazon that return types with arguments of type PlayList Modifier and Type Method Description List<PlayList>
Amazon. getCharts(Locale market)
List<PlayList>
AmazonPlayList. getChildPlayLists()
-
Uses of PlayList in com.tagtraum.ubermusic.beatport
Classes in com.tagtraum.ubermusic.beatport that implement PlayList Modifier and Type Class Description class
BeatportPlayList
BeatportPlayList.Methods in com.tagtraum.ubermusic.beatport that return PlayList Modifier and Type Method Description PlayList
BeatportPlayList. getParentPlayList()
PlayList[]
BeatportPlayList. getPlayListPath()
Methods in com.tagtraum.ubermusic.beatport that return types with arguments of type PlayList Modifier and Type Method Description List<PlayList>
Beatport. getCharts(Locale market)
List<PlayList>
BeatportPlayList. getChildPlayLists()
List<PlayList>
Beatport. getNewReleases(Locale market)
-