summaryrefslogtreecommitdiffstats
path: root/src/demos/nurbs/icons/IconFactory.java
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-06-15 23:12:27 +0000
committerKenneth Russel <[email protected]>2009-06-15 23:12:27 +0000
commit41cd6c47b23975098cd155517790e018670785e7 (patch)
tree247333528ad674d427ba96b1e05810f7961d609e /src/demos/nurbs/icons/IconFactory.java
parent935d2596c13371bb745d921dbcb9f05b0c11a010 (diff)
Copied JOGL_2_SANDBOX r350 on to trunk; JOGL_2_SANDBOX branch is now closed
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@352 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
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..81c906a
--- /dev/null
+++ b/src/demos/nurbs/icons/IconFactory.java
@@ -0,0 +1,19 @@
+package demos.nurbs.icons;
+
+import com.sun.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();
+ }
+ }
+}