189190191192193194195196197198
* {@inheritDoc} */ @Override public PlaylistCollection getPlaylists() { try { return new PlaylistCollectionImpl(super.source, this.itTrack.getPlaylists()); } catch (TrackDeletedException e) { throw new ITObjectDeletedError(this); } }
117118119120121122123124125126
/** * {@inheritDoc} */ public PlaylistCollection getPlaylists(){ try { return new PlaylistCollectionImpl(this, this.itSource.getPlaylists()); } catch (SourceDeletedException e) { throw new IPodRemoved(); } }