writing my signatures
This commit is contained in:
@@ -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 "";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user