Package com.jitcaforwin.basic.api.exceptions

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


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


  public void setAlbumArtist(String albumArtist) throws TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("AlbumArtist", 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 getShow() throws TrackDeletedException {
    try {
      return this.iTunesCom.getPropertyAsString("Show");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }
  }
View Full Code Here

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

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

  public void setSeasonNumber(long seasonNumber) throws TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("SeasonNumber", seasonNumber);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    } catch (ITUNES_E_OBJECTLOCKED e) {
      throw new TrackLockedException(this);
    }
  }
View Full Code Here

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

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

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

  public void setEpisodeNumber(long episodeNumber) throws TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("EpisodeNumber", episodeNumber);
    } 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.