mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
15 lines
257 B
Java
15 lines
257 B
Java
public class ClassWithExternalAnnotatedMembers {
|
|
String nullableMethod() {
|
|
return null;
|
|
}
|
|
|
|
String notNullMethod() {
|
|
return "nya";
|
|
}
|
|
|
|
void methodWithNotNullParameter(Integer x) {
|
|
}
|
|
|
|
String nullableField = "nya";
|
|
}
|