mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
IDEA-353192 GitOrigin-RevId: e8d2d8270dbc1c39300d5a2d55ef993e433ccdbc
13 lines
237 B
Java
13 lines
237 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public interface MyTestClass {
|
|
@NotNull
|
|
String implementMe(@NotNull String arg);
|
|
}
|
|
|
|
public class MyRealTestClass implements MyTestClass {
|
|
@NotNull
|
|
String implementMe(String arg) {
|
|
|
|
}
|
|
} |