mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
67 lines
824 B
Java
67 lines
824 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class B {
|
|
@NotNull
|
|
B b;
|
|
|
|
public B getB() {
|
|
return b;
|
|
}
|
|
|
|
public void setB(B b) {
|
|
this.b = b;
|
|
}
|
|
|
|
@NotNull
|
|
private String bug = "true";
|
|
|
|
public boolean getBug() {
|
|
return Boolean.valueOf(bug);
|
|
}
|
|
}
|
|
class C {
|
|
@NotNull C c;
|
|
|
|
C(C c) {
|
|
this.c = c;
|
|
}
|
|
|
|
C(@Nullable C c, int i) {
|
|
this.c = c;
|
|
}
|
|
|
|
@Nullable
|
|
public C getC() {
|
|
return c;
|
|
}
|
|
|
|
public void setC(@Nullable C c) {
|
|
this.c = c;
|
|
}
|
|
|
|
@NotNull C c1;
|
|
@org.jetbrains.annotations.Nullable
|
|
public C getC1() {
|
|
if (c1 != null) {
|
|
return null;
|
|
}
|
|
return c1;
|
|
}
|
|
}
|
|
|
|
class D {
|
|
@Nullable Long myL;
|
|
|
|
D(long l) {
|
|
myL = l;
|
|
}
|
|
}
|
|
|
|
class E {
|
|
final @NotNull C c;
|
|
|
|
E(C c) {
|
|
this.c = c;
|
|
}
|
|
|
|
} |