writing my signatures

This commit is contained in:
Stepan Koltsov
2011-12-14 00:58:17 +04:00
parent 4f16b5da8c
commit b86625a437
20 changed files with 603 additions and 97 deletions
+5
View File
@@ -26,4 +26,9 @@ public @interface JetMethod {
* @return is this type returnTypeNullable
*/
boolean nullableReturnType() default false;
/**
* Return type type unless java type is correct Kotlin type.
*/
String returnType () default "";
}
@@ -34,4 +34,9 @@ public @interface JetValueParameter {
* @return if this parameter has default value
*/
boolean hasDefaultValue () default false;
/**
* @return type unless Java type is correct Kotlin type.
*/
String type() default "";
}