Package com.jitcaforwin.extended.api.exceptions

Examples of com.jitcaforwin.extended.api.exceptions.TrackReadOnly


   */
  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

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

  public void setEq(EQPreset eq) throws TrackReadOnly {
    try {
      this.eq = eq;
      this.itTrack.setEQ(eq.getName());
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setShowName(String showName) throws TrackReadOnly {
    try {
      this.itVideo.setShow(showName);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

   */
  public void setSeasonNumber(long seasonNumber) throws TrackReadOnly {
    try {
      this.itVideo.setSeasonNumber(seasonNumber);
    } 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.api.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.