Package com.jitcaforwin.basic.exceptions

Examples of com.jitcaforwin.basic.exceptions.TrackDeletedException


  public void reveal()  throws TrackDeletedException {
    try {
      this.iTunesCom.callProcedure("Reveal");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }
  }
View Full Code Here


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

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

  public void setCategory(String categorythrows TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("Category", category);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }catch (ITUNES_E_OBJECTLOCKED e) {
      throw new TrackLockedException(this);
    }
  }
View Full Code Here

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

  public void setDescription(String descriptionthrows TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("Description", description);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }catch (ITUNES_E_OBJECTLOCKED e) {
      throw new TrackLockedException(this);
    }
  }
View Full Code Here

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

  public void setLongDescription(String longDescriptionthrows TrackDeletedException, TrackLockedException {
    try {
      this.iTunesCom.setProperty("LongDescription", longDescription);
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(this);
    }catch (ITUNES_E_OBJECTLOCKED e) {
      throw new TrackLockedException(this);
    }
  }
View Full Code Here

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

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