This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
Re: Revised patch: ClassLoader changes and more
- To: green at cygnus dot com
- Subject: Re: Revised patch: ClassLoader changes and more
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 26 Nov 2000 12:24:49 -0700
- Cc: java-patches at sources dot redhat dot com
- References: <200011260356.TAA30417@happy.cygnus.com>
- Reply-To: tromey at cygnus dot com
>>>>> "Anthony" == Anthony Green <green@cygnus.com> writes:
Anthony> * java/lang/Class.java (forName): New method.
Anthony> * java/lang/Class.h (forName): New method.
Anthony> * java/lang/natClass.cc (forName): New method.
You wrote forName(String,ClassLoader).
However, 1.2 defines forName(String,boolean,ClassLoader).
Implementing the latter is probably a bit more involved, as you have
to delve into class initialization stuff.
Tom