com.vividsolutions.jtstest.testbuilder.IconLoader Maven / Gradle / Ivy
The newest version!
package com.vividsolutions.jtstest.testbuilder;
import javax.swing.ImageIcon;
/**
* Gets an icon from this class' package.
*/
public class IconLoader {
public static ImageIcon icon(String filename) {
return new ImageIcon(IconLoader.class.getResource(filename));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy