summaryrefslogtreecommitdiffstats
path: root/libjava/gnu/java/net
diff options
context:
space:
mode:
authorbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2004-07-23 14:25:41 +0000
committerbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2004-07-23 14:25:41 +0000
commitb50662ea0a3470744e9d5944d062823fc2b19c0d (patch)
treebd4f59d554e5698c4eb4dd018b0cc949e9e25455 /libjava/gnu/java/net
parent63c1657bf2b88278b3c0e629f91cf95a3804e18a (diff)
downloadppe42-gcc-b50662ea0a3470744e9d5944d062823fc2b19c0d.tar.gz
ppe42-gcc-b50662ea0a3470744e9d5944d062823fc2b19c0d.zip
2004-07-23 Mark Wielaard <mark@klomp.org>
* gnu/java/net/DefaultContentHandlerFactory.java: Check in real file missed in last commit. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85080 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/gnu/java/net')
-rw-r--r--libjava/gnu/java/net/DefaultContentHandlerFactory.java53
1 files changed, 49 insertions, 4 deletions
diff --git a/libjava/gnu/java/net/DefaultContentHandlerFactory.java b/libjava/gnu/java/net/DefaultContentHandlerFactory.java
index 49df2bc03a9..a653cff051b 100644
--- a/libjava/gnu/java/net/DefaultContentHandlerFactory.java
+++ b/libjava/gnu/java/net/DefaultContentHandlerFactory.java
@@ -1,4 +1,4 @@
-/* DefaultContentHandlerFactory.java -- DUMMY implementation
+/* DefaultContentHandlerFactory.java
Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -35,16 +35,61 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+
package gnu.java.net;
+import java.awt.Toolkit;
+import java.io.IOException;
import java.net.ContentHandler;
import java.net.ContentHandlerFactory;
+import java.net.URLConnection;
+import java.util.Arrays;
+import java.util.HashSet;
+
+import gnu.java.awt.ClasspathToolkit;
-public class DefaultContentHandlerFactory
- implements ContentHandlerFactory
+/** Content Handler for Image types, using the AWT Toolkit's image decoder. */
+class ImageHandler extends ContentHandler
{
+ static ImageHandler instance = new ImageHandler();
+
+ public Object getContent(URLConnection urlc) throws IOException
+ {
+ ClasspathToolkit tk = (ClasspathToolkit) Toolkit.getDefaultToolkit();
+ java.awt.image.ImageProducer ip = tk.createImageProducer(urlc.getURL());
+ return ip;
+ }
+}
+
+/**
+ */
+public class DefaultContentHandlerFactory implements ContentHandlerFactory
+{
+ /** For now, hard code the list of types that we assume should
+ * be supported by the Toolkit. ClasspathToolkit should perhaps provide
+ * an API to express what Image MIME types the Toolkit understands.
+ */
+ private static String[] known_image_types =
+ {
+ "image/bmp",
+ "image/gif",
+ "image/jpeg",
+ "image/png",
+ "image/tiff",
+ "image/x-portable-anymap",
+ "image/x-cmu-raster",
+ "image/x-xbitmap",
+ "image/x-xpixmap"
+ };
+
+ private static HashSet imageTypes
+ = new HashSet(Arrays.asList(known_image_types));
+
public ContentHandler createContentHandler(String mimeType)
{
+ if (imageTypes.contains(mimeType))
+ return ImageHandler.instance;
+ // Currently, only image types are handled.
return null;
}
}
OpenPOWER on IntegriCloud