Examples of ITUserPlaylistSpecialKind


Examples of com.jitcaforwin.basic.api.enums.ITUserPlaylistSpecialKind

    }
  }

  public ITUserPlaylistSpecialKind getSpecialKind() throws PlaylistDeletedException {
    try {
      return new ITUserPlaylistSpecialKind(this.iTunesCom.getPropertyAsEnum("SpecialKind"));
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new PlaylistDeletedException(this);
    }
  }
View Full Code Here

Examples of com.jitcaforwin.basic.api.enums.ITUserPlaylistSpecialKind

   * @throws JitcaException
   *             if an error occurs.
   */
  public static UserPlaylist createUserPlaylist(boolean lazy, UserLibrary library, IITUserPlaylist itPlaylist) {
    try {
      ITUserPlaylistSpecialKind specialKind = ((IITUserPlaylist) itPlaylist).getSpecialKind();
     
      if (specialKind.is(ITUserPlaylistSpecialKind.Folder())) {
        return new PlaylistFolderImpl(lazy, library, itPlaylist);
      } else {
        if (itPlaylist.isSmart()) {
          return new SmartPlaylistImpl(lazy, library, itPlaylist);
        } else {
View Full Code Here

Examples of com.jitcaforwin.basic.enums.ITUserPlaylistSpecialKind

   * @throws JitcaException
   *             if an error occurs.
   */
  public static UserPlaylist createUserPlaylist(boolean lazy, UserLibrary library, IITUserPlaylist itPlaylist) {
    try {
      ITUserPlaylistSpecialKind specialKind = ((IITUserPlaylist) itPlaylist).getSpecialKind();
     
      if (specialKind.is(ITUserPlaylistSpecialKind.Folder())) {
        return new PlaylistFolderImpl(lazy, library, itPlaylist);
      } else {
        if (itPlaylist.isSmart()) {
          return new SmartPlaylistImpl(lazy, library, itPlaylist);
        } else {
View Full Code Here

Examples of com.jitcaforwin.basic.enums.ITUserPlaylistSpecialKind

    }
  }

  public ITUserPlaylistSpecialKind getSpecialKind() throws PlaylistDeletedException {
    try {
      return new ITUserPlaylistSpecialKind(this.iTunesCom.getPropertyAsEnum("SpecialKind"));
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new PlaylistDeletedException(this);
    }
  }
View Full Code Here

Examples of com.jitcaforwin.basic.enums.ITUserPlaylistSpecialKind

  public boolean isSmart() throws JitcaGeneralException {
    return this.iTunesCom.getPropertyAsBoolean("Smart");
  }

  public ITUserPlaylistSpecialKind getSpecialKind() throws JitcaGeneralException {
    return new ITUserPlaylistSpecialKind(this.iTunesCom.getPropertyAsEnum("SpecialKind"));
  }
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.