116117118119120121122123124
/** * {@inheritDoc} * @throws JitcaException if an error occurs. */ public iPodImpl getIPod() throws JitcaException { iPodCollection iPods = this.getIPods(); if (iPods == null || iPods.size() > 1) return null; else return iPods.getFirst(); }
126127128129130131132133134135136
/** * {@inheritDoc} * @throws JitcaException if an error occurs. */ public iPodCollection getIPods() throws JitcaException { iPodCollection iPods = new iPodCollection(this.iTunes, this.iTunes.getSources()); if (iPods.size() == 0){ return null; } else return iPods; }