001 package org.shiftone.jrat.desktop.util;
002
003 import javax.swing.*;
004
005 /**
006 * @author jeff@shiftone.org (Jeff Drost)
007 */
008 public class Icons {
009 private static ClassLoader LOADER = Icons.class.getClassLoader();
010
011 public static Icon getIcon(String path) {
012 return new ImageIcon(LOADER.getResource("org/shiftone/jrat/desktop/icons/" + path));
013 }
014 }