Exemplo n.º 1
0
 public void cacheIcon(File f, Icon i) {
   if (f == null || i == null) {
     return;
   }
   iconCache.put(f, i);
 }
Exemplo n.º 2
0
 public Icon getCachedIcon(File f) {
   return iconCache.get(f);
 }