1 package de.jwi.jgallery; 2 3 24 25 26 import java.io.FileNotFoundException ; 27 import java.io.InputStream ; 28 29 30 35 public interface IImageAccessor 36 { 37 InputStream getImageInputStream() 38 throws FileNotFoundException ; 39 40 InputStream getThumbInputStream() 41 throws FileNotFoundException ; 42 43 long getLength(); 44 45 long getLastModified(); 46 47 } 48 | Popular Tags |