Files
kotlin-fork/idea/testData/debugger/tinyApp/src/forTests/MyJavaClass.java
T
2016-02-17 15:08:53 +03:00

23 lines
409 B
Java
Vendored

package forTests;
import org.jetbrains.annotations.NotNull;
public class MyJavaClass {
public void testFun() {
int i = 1;
}
@NotNull
public String testNotNullFun() {
return "a";
}
public static int staticFun(Object s) {
return 1;
}
public static <T> T runReadAction(@NotNull Computable<T> computation) {
return computation.compute();
}
}