Package com.jitcaforwin.basic.api.exceptions

Examples of com.jitcaforwin.basic.api.exceptions.TrackDeletedException


  public long getSize64High() throws TrackDeletedException {
    try {
      return this.iTunesCom.getPropertyAsLong("Size64High");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }
  }
View Full Code Here


  public long getSize64Low() throws TrackDeletedException {
    try {
      return this.iTunesCom.getPropertyAsLong("Size64Low");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }
  }
View Full Code Here

  public boolean isUnplayed() throws TrackDeletedException {
    try {
      return this.iTunesCom.getPropertyAsBoolean("Unplayed");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }
  }
View Full Code Here

  public void setUnplayed(boolean shouldBeUnplayed) throws TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("Unplayed", shouldBeUnplayed);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    } catch (ITUNES_E_OBJECTLOCKED e) {
      throw new TrackLockedException(this);
    }
  }
View Full Code Here

  public String getSortAlbum() throws TrackDeletedException {
    try {
      return this.iTunesCom.getPropertyAsString("SortAlbum");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }
  }
View Full Code Here

  public void setSortAlbum(String album) throws TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("SortAlbum", album);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    } catch (ITUNES_E_OBJECTLOCKED e) {
      throw new TrackLockedException(this);
    }
  }
View Full Code Here

  public String getSortAlbumArtist() throws TrackDeletedException {
    try {
      return this.iTunesCom.getPropertyAsString("SortAlbumArtist");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }
  }
View Full Code Here

  public void setSortAlbumArtist(String albumArtist) throws TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("SortAlbumArtist", albumArtist);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    } catch (ITUNES_E_OBJECTLOCKED e) {
      throw new TrackLockedException(this);
    }
  }
View Full Code Here

  public String getSortArtist() throws TrackDeletedException {
    try {
      return this.iTunesCom.getPropertyAsString("SortArtist");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }
  }
View Full Code Here

  public void setSortArtist(String artist) throws TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("SortArtist", artist);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    } catch (ITUNES_E_OBJECTLOCKED e) {
      throw new TrackLockedException(this);
    }
  }
View Full Code Here

TOP

Related Classes of com.jitcaforwin.basic.api.exceptions.TrackDeletedException

Copyright © 2018 www.massapicom. 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.