jTracer  1.03
Stack trace visualization tool
Vector<Image> org.libcsdbg.jtracer.Registry.getProjectIcons ( )

Get a cross-platform set of project icons.

Returns
the icon set

Definition at line 305 of file Registry.java.

References org.libcsdbg.jtracer.Registry.loadIcon().

306  {
307  Vector<Image> retval = new Vector<Image>();
308  for (int i = 16; i <= 128; i *= 2) {
309  ImageIcon icon = loadIcon("icon" + i + ".png");
310  if (icon != null)
311  retval.add(icon.getImage());
312  }
313 
314  return retval;
315  }
ImageIcon loadIcon(String nm)
Load an icon from the current theme.
Definition: Registry.java:220

+ Here is the call graph for this function: