Added "Specify Kotlin Signature" intention.

This commit is contained in:
Evgeny Gerashchenko
2012-08-16 22:16:35 +04:00
parent ba9db41273
commit 80f46af6ad
8 changed files with 160 additions and 7 deletions
@@ -0,0 +1,8 @@
import jet.runtime.typeinfo.KotlinSignature;
public class MyClass {
<spot>@KotlinSignature("fun method() : jet.String?")</spot>
public String method() {
return "";
}
}
@@ -0,0 +1,5 @@
public class MyClass {
public String method() {
return "";
}
}
@@ -0,0 +1,5 @@
<html>
<body>
This intention adds Kotlin signature for Java method.
</body>
</html>