aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/net/URL.java
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2001-09-06 22:32:54 +0000
committerAnthony Green <green@gcc.gnu.org>2001-09-06 22:32:54 +0000
commita11e2c22796847b37dbf9a0b164150033bc17168 (patch)
treece727c113b87b1cdaa86ced6af1018bb91186e15 /libjava/java/net/URL.java
parentf2767a670ee3fdefa997e76c2fcbaf67933e38f9 (diff)
downloadgcc-a11e2c22796847b37dbf9a0b164150033bc17168.zip
gcc-a11e2c22796847b37dbf9a0b164150033bc17168.tar.gz
gcc-a11e2c22796847b37dbf9a0b164150033bc17168.tar.bz2
jvm.h: Declare _Jv_RegisterResource.
* include/jvm.h: Declare _Jv_RegisterResource. * gnu/gcj/Core.java, gnu/gcj/natCore.cc, gnu/gcj/protocol/core/Connection.java, gnu/gcj/protocol/core/Handler.java, gnu/gcj/protocol/core/CoreInputStream.java, gnu/gcj/protocol/core/natCoreInputStream.cc: New files. * java/net/URL.java (setURLStreamHandler): Use gnu.gcj.protocol.core.Handler for the core protocol. * gnu/gcj/runtime/VMClassLoader.java (init): Add "core:/" to the end of java.class.path. * Makefile.am (ordinary_java_source_files): Add new java files. (nat_source_files): Add new native code files. * Makefile.in: Rebuilt. From-SVN: r45450
Diffstat (limited to 'libjava/java/net/URL.java')
-rw-r--r--libjava/java/net/URL.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/libjava/java/net/URL.java b/libjava/java/net/URL.java
index 2583732..25291fa 100644
--- a/libjava/java/net/URL.java
+++ b/libjava/java/net/URL.java
@@ -339,6 +339,10 @@ public final class URL implements Serializable
// If a non-default factory has been set, use it to find the protocol.
if (factory != null)
handler = factory.createURLStreamHandler(protocol);
+ else if (protocol.equals ("core"))
+ {
+ handler = new gnu.gcj.protocol.core.Handler ();
+ }
else if (protocol.equals ("file"))
{
// This is an interesting case. It's tempting to think that we