public void setPartOfGaplessAlbum(boolean shouldBePartOfGaplessAlbum) throws TrackDeletedException,
TrackLockedException {
try {
this.iTunesCom.setProperty("PartOfGaplessAlbum", shouldBePartOfGaplessAlbum);
} catch (ITUNES_E_OBJECTDELETED e) {
throw new TrackDeletedException(this);
} catch (ITUNES_E_OBJECTLOCKED e) {
throw new TrackLockedException(this);
}
}