142143144145146147148149150151
/** * {@inheritDoc} */ public CD getCD() throws JitcaException { CDCollectionImpl cds = this.getCDs(); if (cds == null || cds.size() > 1) return null; return cds.getFirst(); }
152153154155156157158159160161162
/** * {@inheritDoc} */ public CDCollectionImpl getCDs() throws JitcaException { CDCollectionImpl cds = new CDCollectionImpl(this.iTunes, this.iTunes.getSources()); if (cds.size() == 0) return null; else return cds; }