This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Patch: java.lang.Class
- From: Tom Tromey <tromey at redhat dot com>
- To: Michael Koch <konqueror at gmx dot de>
- Cc: java-patches at gcc dot gnu dot org
- Date: 11 Nov 2003 12:31:46 -0700
- Subject: Re: Patch: java.lang.Class
- References: <E1AJeFm-0005nA-00@majestix.konqueror.de>
- Reply-to: tromey at redhat dot com
>>>>> "Michael" == Michael Koch <konqueror@gmx.de> writes:
Michael> I wrote a little patch to fix little issues in
Michael> java.lang.Class. It adds the serialVersionUID field and adds
Michael> "throws SecurityException" to two methods.
The serialVersionUID part is ok.
I think our standard is not to declare SecurityException in throws,
since it is a RuntimeException. Instead it should go in the javadoc.
Speaking of which, we could stand to merge in the classpath javadoc
for Class.
Tom