1 // %1126721330369:hoplugins.transfers.ui% 2 package hoplugins.transfers.ui; 3 4 import javax.swing.ImageIcon; 5 6 7 /*** 8 * Interface for easy access to icons. 9 * 10 * @author <a href=mailto:nethyperon@users.sourceforge.net>Boy van der Werf</a> 11 */ 12 public interface Icon { 13 //~ Static fields/initializers ----------------------------------------------------------------- 14 15 /*** Icon for transfers in. */ 16 javax.swing.Icon IN = new ImageIcon(Icon.class.getResource("images/in.gif")); 17 18 /*** Icon for transfers out. */ 19 javax.swing.Icon OUT = new ImageIcon(Icon.class.getResource("images/out.gif")); 20 }