Package com.jitcaforwin.basic.exceptions

Examples of com.jitcaforwin.basic.exceptions.TrackDeletedException


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


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

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

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

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

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

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

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

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

  public JitcaDate getModificationDate() throws TrackDeletedException {
    try {
      return this.iTunesCom.getPropertyAsDate("ModificationDate");
    } catch (ITUNES_E_OBJECTDELETED e) {
      throw new TrackDeletedException(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.