Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #8614
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!nx02.iad01.newshosting.com!newshosting.com!news-out.readnews.com!news-xxxfer.readnews.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail |
|---|---|
| From | Lew <lewbloch@gmail.com> |
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: Support Map<String, String> & Map<String, MyString> |
| Date | Thu, 6 Oct 2011 19:03:23 -0700 (PDT) |
| Organization | http://groups.google.com |
| Lines | 44 |
| Message-ID | <15595172.247.1317953003571.JavaMail.geo-discussion-forums@prni6> (permalink) |
| References | <dbb47bbb-1583-4b6d-a769-833fe220f9f3@5g2000yqo.googlegroups.com> <12630712.21.1317931375515.JavaMail.geo-discussion-forums@prib32> <37e7ff82-4231-4c47-b933-53e4e7379af0@z19g2000vby.googlegroups.com> |
| Reply-To | comp.lang.java.programmer@googlegroups.com |
| NNTP-Posting-Host | 67.218.110.53 |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=ISO-8859-1 |
| Content-Transfer-Encoding | quoted-printable |
| X-Trace | posting.google.com 1317953003 7346 127.0.0.1 (7 Oct 2011 02:03:23 GMT) |
| X-Complaints-To | groups-abuse@google.com |
| NNTP-Posting-Date | Fri, 7 Oct 2011 02:03:23 +0000 (UTC) |
| In-Reply-To | <37e7ff82-4231-4c47-b933-53e4e7379af0@z19g2000vby.googlegroups.com> |
| Complaints-To | groups-abuse@google.com |
| Injection-Info | glegroupsg2000goo.googlegroups.com; posting-host=67.218.110.53; posting-account=CP-lKQoAAAAGtB5diOuGlDQk0jIwmH0T |
| User-Agent | G2/1.0 |
| X-Google-Web-Client | true |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.java.programmer:8614 |
Show key headers only | View raw
albert kao wrote:
> Lew wrote:
>> albert kao wrote:
>>> The following programs work but I like to combine MyComboBox &
>>> MyComboBox2 into one class so that both Map<String, String> &
>>> Map<String, MyString> data types are supported in the single combined
>>> class.
>>> How to do that?
>>
>> Have 'MyString' implement 'CharSequence' and use a 'Map<String,CharSequence>'?
>>
>>> public class MyComboBox extends LangComboBox implements
>>> PropertyChangeListener {
>>> protected EventListenerList listenerList = new EventListenerList();
>>> private Set keySet = Collections.EMPTY_SET;
>>
>> DO NOT USE RAW TYPES!
>
> 'MyString' do NOT implement 'CharSequence', so it cannot use a
> 'Map<String,CharSequence>'
I was suggesting that you change MyString. Obviously it doesn't implement that interface now, which is why I suggesting making that change. If it had already implemented 'CharSequence' you wouldn't be here asking your question. True?
No worries, you can use the 'Map<String, ?>' trick suggested upthread. Then you can use the same 'ComboBox' for either kind, assuming a suitable 'toString()' method for 'MyString'.
DO NOT USE RAW TYPES!
Code to check the type at run time is usually, and in your case definitely a sign of incomplete design. Make your structures type safe at the compiler-enforced level.
And have I mentioned that you should not use raw types?
DO NOT USE RAW TYPES!
--
Lew
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar
Support Map<String, String> & Map<String, MyString> albert kao <albertkao3@gmail.com> - 2011-10-06 12:05 -0700
Re: Support Map<String, String> & Map<String, MyString> Lew <lewbloch@gmail.com> - 2011-10-06 13:02 -0700
Re: Support Map<String, String> & Map<String, MyString> Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2011-10-06 13:23 -0700
Re: Support Map<String, String> & Map<String, MyString> albert kao <albertkao3@gmail.com> - 2011-10-06 14:07 -0700
Re: Support Map<String, String> & Map<String, MyString> Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2011-10-06 15:42 -0700
Re: Support Map<String, String> & Map<String, MyString> albert kao <albertkao3@gmail.com> - 2011-10-06 17:54 -0700
Re: Support Map<String, String> & Map<String, MyString> albert kao <albertkao3@gmail.com> - 2011-10-06 18:09 -0700
Re: Support Map<String, String> & Map<String, MyString> albert kao <albertkao3@gmail.com> - 2011-10-06 13:32 -0700
Re: Support Map<String, String> & Map<String, MyString> Lew <lewbloch@gmail.com> - 2011-10-06 19:03 -0700
Re: Support Map<String, String> & Map<String, MyString> albert kao <albertkao3@gmail.com> - 2011-10-06 20:33 -0700
Re: Support Map<String, String> & Map<String, MyString> Roedy Green <see_website@mindprod.com.invalid> - 2011-10-07 02:41 -0700
Re: Support Map<String, String> & Map<String, MyString> albert kao <albertkao3@gmail.com> - 2011-10-07 03:49 -0700
Re: Support Map<String, String> & Map<String, MyString> Roedy Green <see_website@mindprod.com.invalid> - 2011-10-07 10:48 -0700
csiph-web