mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
12 lines
233 B
Java
12 lines
233 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public interface MyTestClass {
|
|
@NotNull
|
|
String implementMe(@NotNull<caret> String arg);
|
|
}
|
|
|
|
public class MyRealTestClass implements MyTestClass {
|
|
String implementMe(String arg) {
|
|
|
|
}
|
|
} |