Tagged Questions
12
votes
1answer
2k views
What is the status of JSR 305?
I have seen this question: http://stackoverflow.com/questions/1476757/jsr305-vs-jsr308-java-type-anotations-which-is-going-to-be-the-standard and I understand the difference between JSRs 308 and 305.
...
7
votes
3answers
1k views
JSR305 vs. JSR308 (Java Type Anotations) - Which is going to be the standard?
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 seem to ...
5
votes
3answers
1k views
@Nullable/@NotNull with IntelliJ IDEA, Maven & JSR 305
I really like the code inspection functionalities which are now able with either JSR 305 or Jetbrains' proprietary annotations for IntelliJ.
Unfortunately both implementations (JSR 305 and Jetbrains') ...
5
votes
2answers
238 views
Findbugs + JSR305: Possibility to specify default behavior?
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 null.
...
2
votes
2answers
89 views
Is there a good Eclipse plugin for checking @Nonnull and @Nullable annotations?
The checking of the @Nonnull and @Nullable annotations in Eclipse is an early beta. The largest problem is that there it no knowing over the null behavior of the Java API.
Are there any other ...
2
votes
1answer
436 views
Automatically generating equals and hashCode in Eclipse that is aware of @NonNull annotations
Is there a way to configure Eclipse to automatically generate hashCode and equals with awareness of @NonNull annotations? Currently my Eclipse generates the code with unnecessary null checks, even on ...
0
votes
1answer
42 views
Is @ParametersAreNonnullByDefault applies to method return values too?
The documentation for @ParametersAreNonnullByDefault says, that:
This annotation can be applied to a package, class or method to indicate that the method parameters in that element are nonnull by ...