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); } }
244245246247248249250251
try { this.iTunesCom.setProperty("DiscNumber", discNumber); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
270271272273274275276277
try { this.iTunesCom.setProperty("Enabled", isEnabled); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }
288289290291292293294295
try { this.iTunesCom.setProperty("EQ", eq); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } catch (ITUNES_E_OBJECTLOCKED e) { throw new TrackLockedException(this); } }