Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems excessive when annotations apply to a method.

How do I use the annotation @SuppressWarnings("unchecked") for a single cast instead of a whole method?

In this example, I just finished checking that a cast will be safe and so I proceed to cast but I get an annoying warning.

@Override
public void execDetails()
{ 
    Map<Integer, ResponseList<?>> responseMap = 
            new HashMap<Integer, ResponseList<?>>();

    // ... omitted code ...

    ResponseList<?> responseList = responseMap.get(requestId);
    Class<?> elementType = responseList.getElementType();
    if (elementType == ExecutionDetail.class)
        ((ResponseList<ExecutionDetail>)responseList).add(new ExecutionDetail());

}
share|improve this question

2 Answers

up vote 7 down vote accepted

You can use @SuppressWarnings for a single variable declaration:

public static List<String> foo(List<?> list) {
    List<String> bad = (List<String>) list;

    @SuppressWarnings("unchecked")
    List<String> good = (List<String>) list;
    return good;
}

It has to be at the point of the local variable declaration though:

Annotations may be used as modifiers in any declaration, whether package (§7.4), class (§8), interface, field (§8.3, §9.3), method (§8.4, §9.4), parameter, constructor (§8.8), or local variable (§14.4).

share|improve this answer
It appears that the annotation helps only if the cast and the variable declaration are in the same statement. – broiyan Nov 4 '11 at 14:24
@broiyan: Yes, that wouldn't surprise me - but you can always introduce an extra local variable just for the sake of that statement :) – Jon Skeet Nov 4 '11 at 14:32

You can extract a method for that one line and suppress for that line/method.

Many tools/ides have there own ways of doing this such as placing the annotation on the local variable, but I don't believe all compilers supports this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.