blob: 88d8539ad9c0a0234b291c77e035ed0c271134bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package demos.nurbs.icons;
import java.io.*;
import javax.swing.ImageIcon;
import com.sun.opengl.util.StreamUtil;
public class IconFactory {
private IconFactory() {}
public static ImageIcon getIcon(String resourceName) {
try {
InputStream input = IconFactory.class.getClassLoader().getResourceAsStream(resourceName);
byte[] data = StreamUtil.readAll(input);
return new ImageIcon(data, resourceName);
} catch (IOException e) {
return new ImageIcon();
}
}
}
|