// TESTTODO
public void setSongRepeat(ITPlaylistRepeatMode repeatMode) throws PlaylistDeletedException, PlaylistException {
try {
this.iTunesCom.setProperty("SongRepeat", repeatMode.getValue());
} catch (ITUNES_E_OBJECTDELETED e) {
throw new PlaylistDeletedException(this);
} catch (S_FALSE e) {
throw new PlaylistException("This playlist does not support repeat mode.");
}
}