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); } }
4849505152535455
try { this.iTunesCom.callProcedure("Delete"); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
101102103104105106107108109
try { this.iTunesCom.setProperty("Album", album); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
120121122123124125126127
try { this.iTunesCom.setProperty("Artist", artist); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
146147148149150151152153
try { this.iTunesCom.setProperty("BPM", beatsPerMinute); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
164165166167168169170171
try { this.iTunesCom.setProperty("Comment", comment); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
182183184185186187188189
try { this.iTunesCom.setProperty("Compilation", isCompilation); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
200201202203204205206207
try { this.iTunesCom.setProperty("Composer", composer); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
226227228229230231232233
try { this.iTunesCom.setProperty("DiscCount", discCount); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }