Tagged Questions

4
votes
1answer
37 views

Findbugs + JSR305: Possibility to specify default behavior?

Hello! Note: those annotations, I'm talking about, are specified by JSR305. I have the latest Findbugs (1.3.9) and it finds errors correctly when some field, annotated with @Nonnull, is assigned to …
1
vote
2answers
70 views

JSR305 vs. JSR308 (Java Type Anotations) - Which is going to be the standard?

Hello! There seem to be two different JSRs for annotations. JSR-305: Annotations for Software Defect Detection (additional resource) JSR-308: Annotations on Java Types (additional resource) Both …
2
votes
1answer
170 views

Findbugs using jsr305 annotations in eclipse is not finding bugs

Hi Folks, I've been experimenting with the jsr 305 annotations for use with Findbugs, specifically the @CheckForNull annotation which would have avoided a bug I just found making it out to customers. …