Package com.jitcaforwin.extended.exceptions

Examples of com.jitcaforwin.extended.exceptions.TrackReadOnly


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

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

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.