This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [PATCH] javax.swing.UIDefaults implementation
- From: Tom Tromey <tromey at redhat dot com>
- To: graydon hoare <graydon at redhat dot com>
- Cc: java-patches at gcc dot gnu dot org
- Date: 07 Nov 2003 12:22:30 -0700
- Subject: Re: [PATCH] javax.swing.UIDefaults implementation
- References: <87ad7di0uc.fsf@dub.venge.net>
- Reply-to: tromey at redhat dot com
>>>>> "graydon" == graydon hoare <graydon@redhat.com> writes:
graydon> this patch implements UIDefaults as per the spec (it was
graydon> previously wrong / incomplete) and modifies BasicDefaults to
graydon> use it properly.
graydon> ok to commit?
Looks good, please check it in.
graydon> public class UIDefaults extends Hashtable
graydon> {
graydon> +
graydon> + LinkedList bundles;
graydon> + Set listeners;
graydon> + Locale defaultLocale;
Hashtable is Serializable, and this adds new non-transient fields.
Could you (or did you? I didn't) look at the serialization docs for
this class to make sure we're compatible? We probably need to add a
serialVersionUID to this class at the very least.
Tom