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); } }
389390391392393394395396
try { this.iTunesCom.setProperty("SortName", name); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
407408409410411412413414
try { this.iTunesCom.setProperty("SortShow", showName); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
3839404142434445
try { this.iTunesCom.setProperty("URL", url); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
7475767778798081
try { this.iTunesCom.setProperty("Description", description); } catch (ITUNES_E_OBJECTDELETED e) { throw new ArtworkDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e){ throw new TrackLockedException(null); } }