Now I am getting Eclipse warnings for all of the generic classes. For example
private static Map marshallers;
generates
Map is a raw type. References to generic type Map<K,V> should be
parameterized.
I'm using these correctly and I want the generic class, not the
implementation, so I don't understand the warnings.
I know that this isn't a Q4E problem but I was hoping that while I had
your attention...
Thanks,
Tim
--
Tim Moloney
ManTech Real-time Systems Laboratory
2015 Cattlemen Road \ /
Sarasota, FL 34232 .________\(O)/________.
(941) 377-6775 x208 ' ' O(.)O ' '
This is not generic.
> generates
>
> Map is a raw type. References to generic type Map<K,V> should be
> parameterized.
>
> I'm using these correctly and I want the generic class, not the
> implementation, so I don't understand the warnings.
A catch-all generic would be, Map<?,?>. This will get rid of your warnings.
You really should have it typed if possible, Map<String, IFoo>
--
Robert Dale
Tim
--
Tim