mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 14:28:56 +07:00
GitOrigin-RevId: e2d03f73bd84865de29e48d21c492620497e13f3
25 lines
1.2 KiB
Java
25 lines
1.2 KiB
Java
import typeUse.*;
|
|
|
|
public class IncorrectPlacement extends <warning descr="Nullability annotation is not applicable to extends/implements clause">@Nullable</warning> Object
|
|
implements <warning descr="Nullability annotation is not applicable to extends/implements clause">@Nullable</warning> Cloneable {
|
|
|
|
interface X {
|
|
void test() throws <warning descr="Nullability annotation is not applicable to 'throws' clause">@Nullable</warning> Exception;
|
|
void test2() throws <warning descr="Nullability annotation is not applicable to 'throws' clause">@NotNull</warning> Exception;
|
|
}
|
|
|
|
<warning descr="Nullability annotation is not applicable to constructors">@Nullable</warning> IncorrectPlacement() {}
|
|
|
|
void test(<warning descr="Receiver parameter is inherently non-null">@Nullable</warning> IncorrectPlacement this) {
|
|
<warning descr="Outer type is inherently non-null">@Nullable</warning> IncorrectPlacement.Inner a1;
|
|
IncorrectPlacement.@Nullable Inner a2;
|
|
}
|
|
|
|
void fqn() {
|
|
<warning descr="Annotation on fully-qualified name must be placed before the last component">@Nullable</warning> java.lang.String[] strs;
|
|
}
|
|
|
|
<warning descr="Primitive type members cannot be annotated">@NotNull</warning> int[] data;
|
|
|
|
class Inner {}
|
|
} |