1 package org.varienaja.util.coverart; 2 3 import java.util.Collection; 4 5 /** 6 * Interface, specifying the methods of a Finder for Coverart. 7 * @author Varienaja 8 */ 9 public interface ICoverArtFinder { 10 11 /** 12 * Searches one or multiple sources for CovereArt-images. 13 * @param band The bandname to search for. 14 * @param album The albumtitle tot search for 15 * @return A non-null, sorted Collection of CoverArtSearchResult objects 16 */ 17 public Collection<CoverArtSearchResult> findCoverURLs(String band, String album); 18 19 }