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

The following code raises a "Unchecked / unconfirmed cast" critical violation using Sonar + FindBugs:

1    public static <P extends ComponentContainer & AlignmentHandler> void addComponentAligned(P parent, Component child, Alignment alignment) {
2        parent.addComponent(child);
3        parent.setComponentAlignment(child, alignment);
4    }

Any ideas of how should I avoid this violation?

EDIT: Violation is on line 3

EDIT: Method signatures follow: ComponentContainer#addComponent(Component) AlignmentHandler#setComponentAlignment(Component, Alignment)

share|improve this question
Wait, is there actually a way to use multiple inheritance in Java through what you are attempting? – BlackVegetable Jul 2 '12 at 17:03
1  
Incomplete. Which statement specifically causes the error? Also show definitions of addComponent() and setComponentAligment(). We're not mind-readers. – Jim Garrison Jul 2 '12 at 17:03
@BlackVegetable: Multiple interface inheritance, yes. – Jim Garrison Jul 2 '12 at 17:04
Okay, I think I've been used to the keyword implements instead. Thanks for clearing that up. – BlackVegetable Jul 2 '12 at 17:05

1 Answer

up vote 3 down vote accepted

There is no cast in your source code, but in the bytecode resulting from compilation there is. In the bytecode, the generic types are erased. The erasure for P is its first bound, ComponentContainer. So the bytecode is (almost) equivalent to the bytecode of this:

public static void addComponentAligned(ComponentContainer parent, Component child, Alignment alignment) {
    parent.addComponent(child);
    ((AlignmentHandler)parent).setComponentAlignment(child, alignment);
}

Findbugs looks at that bytecode, and concludes that that cast to AlignmentHandler might fail, because (as far as findbugs sees) the method accepts any ComponentContainer.

This is a findbugs bug; you should open a bug report. It looks to me like something that can be fixed without needing to analyze the source code. The bytecode also contains the real (generic) types, and findbugs should use that.

share|improve this answer
Thank you very much Wouter. That appears to be correct, as I was beginning to suspect. – Roman Jul 6 '12 at 16:39

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.