View Javadoc
1 /*** 2 * Created by IntelliJ IDEA. 3 * User: Lennart 4 * Date: 22-nov-2003 5 * Time: 15:39:51 6 */ 7 package comics.interfaces; 8 9 import comics.core.ComicImage; 10 11 import java.net.URL; 12 import java.io.IOException; 13 14 /* 15 * CVS information: 16 * 17 * $Revision: 1.1 $ 18 * $Date: 2003/12/04 14:29:45 $ 19 */ 20 21 /*** 22 * This interface describes the behaviour for a ComicGrabberEngineImplementation. 23 * 24 * @author Lennart Martens 25 */ 26 public interface ComicGrabberEngine { 27 28 /*** 29 * This method returns the ComicImage for the comic file at the specified URL. 30 * 31 * @param aUrl URL to locate the comic image on. 32 * @return ComicImage with the filename and contents of the image. 33 * @throws IOException when something goes wrong during the retrieve. 34 */ 35 public ComicImage grabComic(URL aUrl) throws IOException; 36 }

This page was automatically generated by Maven