Get an image associated with the current color theme.
(String name, Component who, int width,
int height)
| 598 | * Get an image associated with the current color theme. |
| 599 | */ |
| 600 | static public Image getThemeImage(String name, Component who, int width, |
| 601 | int height) { |
| 602 | return getLibImage(THEME_DIR + name, who, width, height); |
| 603 | } |
| 604 | |
| 605 | private static Image imageFromSVG(URL url, int width, int height) |
| 606 | throws TranscoderException { |
no test coverage detected