blob: d6edcab17415e0823b8d6cf463c9fe66afd8f6f5 (
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 com.jogamp.opengl.impl.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();
}
}
}
|