summaryrefslogtreecommitdiffstats
path: root/src/demos/nurbs/icons/IconFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/nurbs/icons/IconFactory.java')
-rwxr-xr-xsrc/demos/nurbs/icons/IconFactory.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/demos/nurbs/icons/IconFactory.java b/src/demos/nurbs/icons/IconFactory.java
new file mode 100755
index 0000000..88d8539
--- /dev/null
+++ b/src/demos/nurbs/icons/IconFactory.java
@@ -0,0 +1,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();
+ }
+ }
+}