127128129130131132133134
public long getPlaylistID() throws ObjectDeletedException { try { return this.iTunesCom.getPropertyAsLong("PlaylistID"); } catch (ITUNES_E_OBJECTDELETED e) { throw new ObjectDeletedException(this); } }
135136137138139140141142
public long getTrackID() throws ObjectDeletedException { try { return this.iTunesCom.getPropertyAsLong("TrackID"); } catch (ITUNES_E_OBJECTDELETED e) { throw new ObjectDeletedException(this); } }
143144145146147148149150
public long getTrackDatabaseID() throws ObjectDeletedException { try { return this.iTunesCom.getPropertyAsLong("TrackDatabaseID"); } catch (ITUNES_E_OBJECTDELETED e) { throw new ObjectDeletedException(this); } }