193194195196197198199200
try { this.iTunesCom.setProperty("AlbumArtist", albumArtist); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
211212213214215216217218
try { this.iTunesCom.setProperty("Show", showName); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
229230231232233234235236
try { this.iTunesCom.setProperty("SeasonNumber", seasonNumber); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
247248249250251252253254
try { this.iTunesCom.setProperty("EpisodeID", episodeID); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
265266267268269270271272
try { this.iTunesCom.setProperty("EpisodeNumber", episodeNumber); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
299300301302303304305306
try { this.iTunesCom.setProperty("Unplayed", shouldBeUnplayed); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
317318319320321322323324
try { this.iTunesCom.setProperty("SortAlbum", album); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
335336337338339340341342
try { this.iTunesCom.setProperty("SortAlbumArtist", albumArtist); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
353354355356357358359360
try { this.iTunesCom.setProperty("SortArtist", artist); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
371372373374375376377378
try { this.iTunesCom.setProperty("SortComposer", composer); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }