Package com.jitcaforwin.extended.exceptions

Examples of com.jitcaforwin.extended.exceptions.TrackReadOnly


   */
  public void setGrouping(String grouping) throws TrackReadOnly {
    try {
      this.itTrack.setGrouping(grouping);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here


   */
  public void setYear(int year) throws TrackReadOnly {
    try {
      this.itTrack.setYear(year);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setPlayedCount(int played) throws TrackReadOnly {
    try {
      this.itTrack.setPlayedCount(played);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setBpm(long bpm) throws TrackReadOnly {
    try {
      this.itTrack.setBPM(bpm);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setDiscCount(int discCount) throws TrackReadOnly {
    try {
      this.itTrack.setDiscCount(discCount);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setDiscNumber(int discNumber) throws TrackReadOnly {
    try {
      this.itTrack.setDiscNumber(discNumber);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setTrackCount(int trackCount) throws TrackReadOnly {
    try {
      this.itTrack.setTrackCount(trackCount);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setTrackNumber(int trackNumber) throws TrackReadOnly {
    try {
      this.itTrack.setTrackNumber(trackNumber);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setRating(long rating) throws TrackReadOnly {
    try {
      this.itTrack.setRating(rating);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setCompilation(boolean isCompilation) throws TrackReadOnly {
    try {
      this.itTrack.setCompilation(isCompilation);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

TOP

Related Classes of com.jitcaforwin.extended.exceptions.TrackReadOnly

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.