You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
1.3 KiB
102 lines
1.3 KiB
package codetoanalyze.java.eradicate;
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
class SubclassExample {
|
|
|
|
class T {
|
|
public void f() {
|
|
}
|
|
}
|
|
|
|
class A {
|
|
|
|
public T foo() {
|
|
return new T();
|
|
}
|
|
|
|
public
|
|
@Nullable
|
|
T bar() {
|
|
return null;
|
|
}
|
|
|
|
public void deref(@Nullable T t) {
|
|
if (t != null) {
|
|
t.f();
|
|
}
|
|
}
|
|
|
|
public void noDeref(T t) {
|
|
}
|
|
|
|
}
|
|
|
|
class B extends A {
|
|
|
|
public
|
|
@Nullable
|
|
T foo() {
|
|
return null;
|
|
}
|
|
|
|
public T bar() {
|
|
return new T();
|
|
}
|
|
|
|
}
|
|
|
|
interface I {
|
|
public T baz();
|
|
}
|
|
|
|
class C implements I {
|
|
|
|
public
|
|
@Nullable
|
|
T baz() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class D extends A {
|
|
|
|
public void deref(T t) {
|
|
t.f();
|
|
}
|
|
|
|
public void noDeref(@Nullable T t) {
|
|
if (t != null) {
|
|
t.f();
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
class ConstructorsAreExcluded {
|
|
class Base {
|
|
Base (@Nullable String s) {
|
|
}
|
|
}
|
|
|
|
class Derived extends Base {
|
|
Derived (String s) { // OK: there's no sub-typing between constructors
|
|
super(s);
|
|
}
|
|
}
|
|
}
|
|
|
|
public class InconsistentSubclassAnnotation {
|
|
|
|
public static void callFromSuperclass(SubclassExample.A a) {
|
|
SubclassExample.T t = a.foo();
|
|
t.f();
|
|
}
|
|
|
|
public static void callWithNullableParam(SubclassExample.A a, @Nullable SubclassExample.T t) {
|
|
a.deref(t);
|
|
}
|
|
|
|
}
|