blob: d7ead54777b5b36afc9adf4524f2154a8700c046 (
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 jogamp.opengl.io.StreamUtil;
import java.io.*;
import javax.swing.ImageIcon;
public class IconFactory {
private IconFactory() {}
public static ImageIcon getIcon(String resourceName) {
try {
InputStream input = IconFactory.class.getClassLoader().getResourceAsStream(resourceName);
byte[] data = StreamUtil.readAll2Array(input);
return new ImageIcon(data, resourceName);
} catch (IOException e) {
return new ImageIcon();
}
}
}
|