예제 #1
0
 public final ImageIcon loadIcon(final String aIconID) {
   final ImageIcon icon = loadIcon("icons", aIconID);
   if (icon != null) return icon;
   final ImageIcon small = loadIcon("small", aIconID);
   if (small != null) return small;
   final ImageIcon image = loadIcon(".", aIconID);
   if (image != null) return image;
   LOG.debug("missing icon for %s", aIconID);
   return null;
 }