Package com.jitcaforwin.extended.collections

Examples of com.jitcaforwin.extended.collections.CDCollection


  /**
   * {@inheritDoc}
   */
  public CD getCD() throws JitcaException {
    CDCollection cds = this.getCDs();
    if (cds == null || cds.size() > 1) return null;
    return cds.getFirst();
  }
View Full Code Here


  /**
   * {@inheritDoc}
   */
  public CDCollection getCDs() throws JitcaException {
    CDCollection cds = new CDCollection(this.iTunes, this.iTunes.getSources());
    if (cds.size() == 0) return null;
    else return cds;
  }
View Full Code Here

TOP

Related Classes of com.jitcaforwin.extended.collections.CDCollection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.