116117118119120121122123124125
} } public ITRatingKind getAlbumRatingKind() throws TrackDeletedException { try { return new ITRatingKind(this.iTunesCom.getPropertyAsEnum("AlbumRatingKind")); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } }
124125126127128129130131132133
} } public ITRatingKind getRatingKind() throws TrackDeletedException { try { return new ITRatingKind(this.iTunesCom.getPropertyAsEnum("RatingKind")); } catch (ITUNES_E_OBJECTDELETED e) { throw new TrackDeletedException(this); } }