mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
15 lines
339 B
Java
15 lines
339 B
Java
import javax.annotation.*;
|
|
|
|
@NonnullByDefault
|
|
class Test {
|
|
Object <warning descr="@NonnullByDefault fields must be initialized">member</warning>;
|
|
|
|
private void accessMember() {
|
|
member = new Object();
|
|
}
|
|
}
|
|
|
|
|
|
@Nonnull
|
|
@javax.annotation.meta.TypeQualifierDefault(java.lang.annotation.ElementType.FIELD)
|
|
@interface NonnullByDefault {} |