mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
12 lines
235 B
Java
12 lines
235 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public interface MyTestClass {
|
|
@NotNull
|
|
String implementMe(@NotNull String arg);
|
|
}
|
|
|
|
public class MyRealTestClass implements MyTestClass {
|
|
String implementMe(@NotNull String arg) {
|
|
|
|
}
|
|
} |