Package org.jampa.model.playlists

Examples of org.jampa.model.playlists.Playlist.moveItemUp()


   * @param item
   */
  public void moveTitleUp(String playlistName, AudioItem item) {
    if (_items.containsKey(playlistName)) {
      Playlist playlist = _items.get(playlistName);
      playlist.moveItemUp(item);
     
      Controller.getInstance().getEventController().fireAudioItemChange(EventConstants.EVT_ITEM_CHANGE_IN_PLAYLIST, null, null);
    } else
      Log.getInstance(PlaylistController.class).info("Playlist not found : " + playlistName);   //$NON-NLS-1$
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.