mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
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) {
|
|
|
|
}
|
|
} |