mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
17 lines
267 B
Java
17 lines
267 B
Java
// "Annotate overriding methods as '@NotNull'" "true"
|
|
|
|
import org.jetbrains.annotations.*;
|
|
|
|
public class XEM {
|
|
<caret>@NotNull
|
|
String f(){
|
|
return "";
|
|
}
|
|
}
|
|
class XC extends XEM {
|
|
@Nullable
|
|
String f() {
|
|
return "";
|
|
}
|
|
}
|