Package com.jitcaforwin.extended.api.exceptions

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


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


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

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

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

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

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

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

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

  @Override
  public void setAlbumRating(long albumRating) throws TrackReadOnly {
    try {
      this.itTrack.setAlbumRating(albumRating);
    } catch (TrackLockedException e) {
      throw new TrackReadOnly(this);
    } catch (TrackDeletedException e) {
      throw new ITObjectDeletedError(this);
    }
  }
View Full Code Here

  @Override
  public void setSkipped(int skipped) throws TrackReadOnly {
    try {
      this.itTrack.setSkippedCount(skipped);
    } 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.