Get an image object from the mode folder. Or when prefixed with /lib, load it from the main /lib folder.
(String filename)
| 636 | * Or when prefixed with /lib, load it from the main /lib folder. |
| 637 | */ |
| 638 | public Image loadImage(String filename) { |
| 639 | ImageIcon icon = loadIcon(filename); |
| 640 | if (icon != null) { |
| 641 | return icon.getImage(); |
| 642 | } |
| 643 | return null; |
| 644 | } |
| 645 | |
| 646 | |
| 647 | public Image loadImageX(String filename) { |
no test coverage detected