1 package net.sourceforge.jsh3modtool.gui.imagetable;
2
3 import java.io.IOException;
4 import java.io.InputStream;
5
6 /***
7 * @author redsolo
8 */
9 public interface ImageModel
10 {
11 String getName();
12 String getDescription();
13 InputStream getData() throws IOException;
14 }