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); } }
1920212223242526
public long getCount() throws ObjectDeletedException{ try{ResultObject count = this.iTunesCom.callFunction("Count"); return count.getLong(); } catch (ITUNES_E_OBJECTDELETED e){ throw new ObjectDeletedException(); } }