Examples of IITPlaylist


Examples of com.jitcaforwin.basic.api.IITPlaylist

  /**
   * {@inheritDoc}
   */
  public UserPlaylist createPlaylist(String name) {
    IITPlaylist itPlaylist = this.iTunes.createPlaylist(name);
    return (PlaylistFolderImpl) this.playlistFactory.getPlaylist(itPlaylist);
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.IITPlaylist

  /**
   * {@inheritDoc}
   */
  public PlaylistFolder createPlaylistFolder(String folderName) {
    IITPlaylist itFolder = this.iTunes.createFolder(folderName);
    return (PlaylistFolderImpl) this.playlistFactory.getPlaylist(itFolder);
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.IITPlaylist

   * @param folderName Name of the new folder.
   * @return New created folder.
   * @throws JitcaException if an error occurs.
   */
  public PlaylistFolder createFolder(PlaylistFolder parent, String folderName) throws JitcaException {
    IITPlaylist newITPlaylist = parent.getITPlaylist().createFolder(folderName);
    return this.createFolder(newITPlaylist);
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.IITPlaylist

   * @param playlistName Name of the new playlist.
   * @return New playlist
   * @throws JitcaException if an error occurs.
   */
  public UserPlaylist createPlaylist(PlaylistFolder parent, String playlistName) throws JitcaException {
    IITPlaylist newITPlaylist = parent.getITPlaylist().createPlaylist(playlistName);
    return createUserPlaylist(newITPlaylist);
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.IITPlaylist

   * @param folderName Name of the new folder.
   * @return The new folder.
   * @throws JitcaException if an error occurs.
   */
  public PlaylistFolder createFolder(String folderName) throws JitcaException {
    IITPlaylist newITPlaylist = this.iTunes.createFolderInSource(folderName, this.source.getITSource());
    return this.createFolder(newITPlaylist);
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.IITPlaylist

   * @param playlistName Name of the new playlist.
   * @return The new playlist.
   * @throws JitcaException if an error occurs.
   */
  public UserPlaylist createPlaylist(String playlistName) throws JitcaException {
    IITPlaylist newITPlaylist = this.iTunes.createPlaylistInSource(playlistName, this.source.getITSource());
    return createUserPlaylist(newITPlaylist);
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.IITPlaylist

  /**
   * {@inheritDoc}
   */
  public UserPlaylist createPlaylist(String name) {
    IITPlaylist itPlaylist = this.iTunes.createPlaylist(name);
    return (PlaylistFolderImpl) this.playlistFactory.getPlaylist(itPlaylist);
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.IITPlaylist

  /**
   * {@inheritDoc}
   */
  public PlaylistFolder createPlaylistFolder(String folderName) {
    IITPlaylist itFolder = this.iTunes.createFolder(folderName);
    return (PlaylistFolderImpl) this.playlistFactory.getPlaylist(itFolder);
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.IITPlaylist

   * @param folderName Name of the new folder.
   * @return New created folder.
   * @throws JitcaException if an error occurs.
   */
  public PlaylistFolder createFolder(PlaylistFolder parent, String folderName) throws JitcaException {
    IITPlaylist newITPlaylist = parent.getITPlaylist().createFolder(folderName);
    return this.createFolder(newITPlaylist);
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.IITPlaylist

   * @param playlistName Name of the new playlist.
   * @return New playlist
   * @throws JitcaException if an error occurs.
   */
  public UserPlaylist createPlaylist(PlaylistFolder parent, String playlistName) throws JitcaException {
    IITPlaylist newITPlaylist = parent.getITPlaylist().createPlaylist(playlistName);
    return createUserPlaylist(newITPlaylist);
  }
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.