Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to avoid Eclipse warnings when using legacy code without generics?

I'm using JSON.simple to generate JSON output from Java. But every time I call jsonobj.put("this", "that"), I see a warning in Eclipse:

Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap should be parameterized

The clean fix would be if JSONObject were genericized, but since it isn't, I can't add any generic type parameters to fix this. I'd like to switch off as few warnings as possible, so adding "@SuppressWarnings("unchecked")" to lots of methods is unappealing, but do I have any other option besides putting up with the warnings?

like image 367
Paul Crowley Avatar asked Apr 15 '10 15:04

Paul Crowley


3 Answers

Here's one option. It's a bit ugly, but allows you to scope the the suppressed warning to only that individual operation.

Add a function which does the unchecked cast, and suppress warnings on it:

@SuppressWarnings("unchecked")
private final static Map<Object,Object> asMap(JSONObject j)
{
  return j;
}

Then you can call it without compiler warnings:

asMap(jsonobj).put("this", "that");

This way, you can be sure that you aren't suppressing any warnings that you actually want to see.

like image 139
Kip Avatar answered Oct 26 '22 12:10

Kip


you can have a per project compiler settings and you can change those warnings to ignore.

like image 34
Omry Yadan Avatar answered Oct 26 '22 12:10

Omry Yadan


Write some helper methods, or wrapper classes for the library. Add the @SuppressWarnings("unchecked") only to those helpers. Then use the helpers to perform the interaction with the library.

like image 43
Chris Lercher Avatar answered Oct 26 '22 13:10

Chris Lercher