Class SimplePlaylistController

    • Constructor Detail

      • SimplePlaylistController

        public SimplePlaylistController()
    • Method Detail

      • nextItem

        public int nextItem​(IPlaylist playlist,
                            int itemIndex)
        Get next item to play.
        Specified by:
        nextItem in interface IPlaylistController
        Parameters:
        playlist - The related play list.
        itemIndex - The current item index. -1 indicates to retrieve the first item for play.
        Returns:
        The next item index to play. -1 reaches the end.
      • previousItem

        public int previousItem​(IPlaylist playlist,
                                int itemIndex)
        Get previous item to play.
        Specified by:
        previousItem in interface IPlaylistController
        Parameters:
        playlist - The related play list.
        itemIndex - The current item index. IPlaylist.itemSize indicated to retrieve the last item for play.
        Returns:
        The previous item index to play. -1 reaches the beginning.