In eclipse, it's possible to set not null by default for a single package. Is there any way to set it across all packages, or for a tree of packages?
Edit
I'm talking about the @Nonnull
annotations that eclipse respects and polices. At the moment, we are putting them on every function, every variable every parameter. I know we can just set them package wide, by putting the attribute in package-info - but we have hundreds of packages, and it's easy to miss one. I am hoping to be able to set eclipse to say "assume @Nonnull
by default, unless @Nullable
is specified".