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: ...
4
votes
4answers
2k views

Is it good practice to replace Class with Class<? extends Object> to avoid warnings?

In a bunch o' places in my code, I have something like this: public Class mySpecialMethod() { return MySpecialClass.class; } which causes the warning Class is a raw type. References to ...
2
votes
3answers
2k views

Java generics: How to cast to (T extends Comparable<? super T>) without raw-types

I wonder whether it is possible to cast a non-Comparable to something so that it matches the method parameter T which has template type <T extends Comparable<? super T>>, like the ...
1
vote
5answers
346 views

Java: removing “Comparable is a raw type” warning

Suppose I have a method called foo taking 2 Object as parameter. Both objects are of the same type and both implements comparable interface. void foo(Object first, Object second){ if ...