Package net.sf.jmp3renamer.plugins.CoverGrabber

Examples of net.sf.jmp3renamer.plugins.CoverGrabber.Cover


        public List<Cover> call() throws Exception {
            List<Cover> albums = prov.getCovers(artist, album);
            List<Cover> result = new ArrayList<Cover>(albums.size());
            if (albums.size() > 0) {
                for (Cover cover2 : albums) {
                    Cover a = cover2;
                    result.add(new CoverWrapper(a, prov));
                }
            } else {
                logger.info("No album found");
            }
View Full Code Here

TOP

Related Classes of net.sf.jmp3renamer.plugins.CoverGrabber.Cover

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.