Files
openide/java/java-tests/testData/codeInsight/generateConstructor/afterParametersForFieldsNotNullByDefaultShouldNotGetExplicitAnnotation.java

10 lines
176 B
Java

@foo.NonnullByDefault
class C {
Object o;
@javax.annotation.Nonnull String s;
public C(Object o, String s) {<caret>
this.o = o;
this.s = s;
}
}