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());
}