javafindbugsjsr305

How to indicate that member fields are @Nonnull by default?


My question is a follow-up to this one.

In past versions of FindBugs, it was possible to use @DefaultAnnotation(Nonnull.class) or @DefaultAnnotationForFields(Nonnull.class) to indicate that all fields in a package should be treated as @Nonnull. In the current version of FindBugs (2.0), @DefaultAnnotation and @DefaultAnnotationForFields are deprecated, and we should all use JSR-305 instead. But JSR-305 doesn't seem to cover everything the (now deprecated) FindBugs annotations cover.

The javadoc does suggest a number of alternatives:

The javadoc doesn't provide any hints on how to deal with its deprecation.

So, using the current versions of FindBugs and/or JSR-305, how should I indicate that all member fields in a certain package (or even in a certain class) are supposed to be treated as @Nonnull? Is it even possible?


Solution

  • I had a similar question, and found that the following seems to work with findbugs (2.0.1-rc2)

    Create a java file with the following annotation definition

    @Nonnull
    @TypeQualifierDefault(ElementType.FIELD)
    @Retention(RetentionPolicy.RUNTIME)
    public @interface FieldsAreNonNullByDefault
    {
    }
    

    similarly, to enforce that all return values from a method are non-null

    @Nonnull
    @TypeQualifierDefault(ElementType.METHOD)
    @Retention(RetentionPolicy.RUNTIME)
    public @interface ReturnTypesAreNonNullByDefault
    {
    }
    

    and then annotate the package as normal.

    I used the following for my tests (package-info.java)

    @javax.annotation.ParametersAreNonnullByDefault
    @com.habit.lib.lang.FieldsAreNonNullByDefault
    @com.habit.lib.lang.ReturnTypesAreNonNullByDefault
    
    package com.mypackagename.subpkg;