Tagged Questions
19
votes
2answers
6k views
Java 6: Unsupported @SuppressWarnings(“rawtypes”) warning
I moved to a new machine which has the latest Sun's Java compiler and noticed some warnings in the existing Java 6 code. The Eclipse IDE, suggested that I annotate the assignment with:
...
6
votes
4answers
2k views
Can unchecked warnings be avoided when overriding a method with raw type parameters?
I am extending a class defined in a library which I cannot change:
public class Parent
{
public void init(Map properties) { ... }
}
If I am defining a class 'Child' that extends Parent and I am ...
1
vote
0answers
457 views
Eclipse Helios - @SuppressWarnings “rawtypes” doesn't work while “unchecked” does
I have a problem with the @SuppressWarnings annotation when handling raw-types warnings in Eclipse Helios.
According to this post and the docs, the annotation parameter rawtypes should be used ...