static ImageIcon imageIcon(S imageID) ctex { ret new ImageIcon(loadBinarySnippet(imageID).toURI().toURL()); } static ImageIcon imageIcon(BufferedImage img) { ret new ImageIcon(img); } ifclass RGBImage static ImageIcon imageIcon(RGBImage img) { ret imageIcon(img.getBufferedImage()); } endif