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 classReadOnlyPlayListRead-only base class forPlayList.Methods in com.tagtraum.audiokern that return PlayList Modifier and Type Method Description PlayListPlayList. 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 voidPlayList. setParentPlayList(PlayList parentPlayList)voidReadOnlyPlayList. setParentPlayList(PlayList parentPlayList)Method parameters in com.tagtraum.audiokern with type arguments of type PlayList Modifier and Type Method Description voidPlayList. setChildPlayLists(List<PlayList> childPlayLists)voidReadOnlyPlayList. setChildPlayLists(List<PlayList> childPlayLists) -
Uses of PlayList in com.tagtraum.beatunes
Methods in com.tagtraum.beatunes that return PlayList Modifier and Type Method Description PlayListPlayListComboBoxModel. getElementAt(int index)PlayListSongContextMenu. getPlayList()Methods in com.tagtraum.beatunes with parameters of type PlayList Modifier and Type Method Description FilePlayListExporterComponent. exportPlayList(PlayList playList, ProgressListener progressListener)FilePlayListExporterComponent. getActualFile(PlayList[] path)IconBeaTunes. getIcon(PlayList playList)Provides aPlayListicon.IconBeaTunes. getLightnessAdjustedIcon(PlayList playList)Provides aPlayListicon that has been adjusted to the theme's lightness.IconBeaTunes. getLightnessAdjustedSmallIcon(PlayList playList)Provides aPlayListicon that has been adjusted to the theme's lightness.IconBeaTunes. getSmallIcon(PlayList playList)Provides a smallPlayListicon.voidMainWindow. select(PlayList playList, long id)Selects the given playlist and also the given song in it.voidSongContextMenu. 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 PlayListBaseAction. getFocusedPlayList()Returns the playlist selected AND focused in the tree view.PlayListBaseAction. 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 DefaultMutableTreeNodeBaseAction. 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 PlayListNewFolderAction. createEmptyPlayList()protected PlayListNewPlayListAction. createEmptyPlayList()Create the empty (but persistent)PlayListobject.PlayListAddToPlayListAction. getPlayList()PlayListExportPlayListAction. getPlayList()PlayListImportPlayListAction. 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, aBiFunctionthat 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 voidAnalyzeAction. 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)booleanNewEmptyPlayListAction. fillPlayList(PlayList newPlayList, long[] selectedSongIds)booleanNewFolderAction. fillPlayList(PlayList newPlayList, long[] selectedSongIds)abstract booleanNewPlayListAction. fillPlayList(PlayList newPlayList, long[] selectedSongIds)This method is called by the action as part of itsNewPlayListAction.actionPerformed(ActionEvent)method.booleanNewPlayListFromSelectionAction. fillPlayList(PlayList newPlayList, long[] selectedSongIds)voidReArrangePlayListAction. reArrangePlayList(PlayList playList, long[] selectedSongIds)You may override this method to provide a custom implementation for playlist re-arrangement.voidAddToPlayListAction. setPlayList(PlayList playList)voidExportPlayListAction. setPlayList(PlayList playList)voidShowInPlayListAction. setPlayList(PlayList playList)Method parameters in com.tagtraum.beatunes.action.standard with type arguments of type PlayList Modifier and Type Method Description voidReArrangePlayListAction. 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 voidAnalysisQueue. 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 PlayListChartEntry. getPlaylist()PlayListChartPanel. 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 PlayListPlayListSorter. getPlaylist()Methods in com.tagtraum.beatunes.filter with parameters of type PlayList Modifier and Type Method Description voidPlayListSorter. 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 classHibernatePlayListPlaylist backed by Hibernate.classPlayListFacadePlayListFacade.Fields in com.tagtraum.beatunes.library declared as PlayList Modifier and Type Field Description protected PlayListPlayListFacade. playListMethods in com.tagtraum.beatunes.library that return PlayList Modifier and Type Method Description PlayListHibernateMediaLibrary. createFolder()PlayListHibernateMediaLibrary. createFolder(Long parentId)PlayListMediaLibrary. createFolder()Creates a new folder under the Music playlist/folder.PlayListMediaLibrary. createFolder(Long parentId)Creates a new folder at a specific location.PlayListHibernateMediaLibrary. createPlayList(Long id, Long parentId, String name, boolean folder)PlayListHibernateMediaLibrary. createPlayList(Long parentId, String name)PlayListHibernateMediaLibrary. createPlayList(String name)PlayListMediaLibrary. createPlayList(Long id, Long parentId, String name, boolean folder)Creates a newPlayListobject with the given name and id.PlayListMediaLibrary. createPlayList(Long parentId, String name)Creates a new PlayList at a specific location.PlayListMediaLibrary. createPlayList(String name)Creates a new PlayList under the Music playlist/folder.PlayListHibernateMediaLibrary. getLibrary()PlayListMediaLibrary. getLibrary()Returns the master playlist that contains all library objects.PlayListHibernatePlayList. getParentPlayList()PlayListPlayListFacade. getParentPlayList()PlayListAbstractMediaLibrary. getPlayList(long id)PlayListMediaLibrary. getPlayList(long playListPersistentId)Get aPlayListfor an id.PlayListPlayListFacade. getPlayList()Gets thePlayListthis playlist is a facade for.PlayList[]HibernatePlayList. getPlayListPath()PlayList[]PlayListFacade. getPlayListPath()abstract PlayListLibraryDescriptor. wrap(PlayList playList)Wraps an internal database playlist into anotherPlayListthat 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 voidPlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)Exports the given playlist to the given file.voidHibernatePlayList. setParentPlayList(PlayList value)voidHibernateMediaLibrary. store(PlayList playList)voidMediaLibrary. store(PlayList playList)Stores a playlist in the beaTunes database.abstract PlayListLibraryDescriptor. wrap(PlayList playList)Wraps an internal database playlist into anotherPlayListthat 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 voidHibernatePlayList. setChildPlayLists(List<PlayList> childPlayLists)voidHibernateMediaLibrary. 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 classFileSystemPlayListFile system based playlist.Methods in com.tagtraum.beatunes.library.filesystem that return PlayList Modifier and Type Method Description PlayListFileSystemLibraryDescriptor. wrap(PlayList playList)Methods in com.tagtraum.beatunes.library.filesystem with parameters of type PlayList Modifier and Type Method Description voidFileSystemPlayList. setParentPlayList(PlayList value)PlayListFileSystemLibraryDescriptor. wrap(PlayList playList)Method parameters in com.tagtraum.beatunes.library.filesystem with type arguments of type PlayList Modifier and Type Method Description voidFileSystemPlayList. 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 classITunesPlayListITunesPlayList.Methods in com.tagtraum.beatunes.library.itunes that return PlayList Modifier and Type Method Description PlayListITLibraryDescriptor. wrap(PlayList playList)PlayListITunesLibraryDescriptor. 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 voidITunesPlayListBinder. bind(PlayList playList, Map<String,Object> playListPropertyMap)Copy properties from a givenplayListPropertyMapto the givenplayList.voidITunesPlayList. setParentPlayList(PlayList value)PlayListITLibraryDescriptor. wrap(PlayList playList)PlayListITunesLibraryDescriptor. wrap(PlayList playList)Method parameters in com.tagtraum.beatunes.library.itunes with type arguments of type PlayList Modifier and Type Method Description voidITunesPlayList. 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 PlayListPlainLibraryDescriptor. wrap(PlayList playList)Methods in com.tagtraum.beatunes.library.plain with parameters of type PlayList Modifier and Type Method Description PlayListPlainLibraryDescriptor. 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 voidCratePlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)voidCSVPlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)voidM3U8PlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)voidPLSv2PlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)voidWPLPlayListExporter. export(Path file, PlayList playList, boolean useRelativePathsIfPossible, ProgressListener progressListener)voidXSPFPlayListExporter. 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 PlayListMatchTable. 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 StringJSONPlayListSerializer. 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 PlayListPlayListTreeModel.PlayListUO. getPlayList()PlayListPlayListTree. getSelectedPlayList()Returns the PlayList selected in the tree view whether the tree view has the focus or notPlayListPlayListTree. getSelectedPlayListsParentFolder()Parent folder of the currently selected playlist or the selected folder itself.PlayListPlayListTreeModel.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 voidPlayListTree. addPlaylist(PlayList beaTunesPlayList)Adds a playlist to the tree in beaTunes in the currently selected folder.voidPlayListTree. addPlaylist(PlayList beaTunesPlayList, PlayList parentSibling)Adds a playlist to the tree in beaTunes.voidPlayListTreeModel. addPlayList(PlayList playList, PlayList parent)voidPlayListTreeModel. deletePlayList(PlayList playList)DefaultMutableTreeNodePlayListTreeModel. getPlayListTreeNode(PlayList playList)Method parameters in com.tagtraum.beatunes.playlisttree with type arguments of type PlayList Modifier and Type Method Description voidPlayListTree. setPlayLists(List<PlayList> playLists)Refreshes all models.voidPlayListTreeModel. 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 PlayListPlayListImage. getPlayList()PlayListSongTableModel. getPlayList()Currently displayed playlist.Methods in com.tagtraum.beatunes.songtable with parameters of type PlayList Modifier and Type Method Description voidPlayListImage. setPlayList(PlayList playList)voidSongTableModel. 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 classAmazonPlayListAmazonPlayList.Methods in com.tagtraum.ubermusic.amazon that return PlayList Modifier and Type Method Description PlayListAmazonPlayList. 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 classBeatportPlayListBeatportPlayList.Methods in com.tagtraum.ubermusic.beatport that return PlayList Modifier and Type Method Description PlayListBeatportPlayList. 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)
-