Files
kotlin-fork/idea/testData/editor/quickDoc/JavaClassConstructorUsedInKotlin_Data.java
T
Yuku Kotani de28a41caa KT-32163: Open Quick Documentation when cursor inside function / constructor brackets (#2502)
* Show function docs when cursor is in args of the function call

* Show constructor docs when cursor is in args of the constructor call

* Show function docs when cursor is in args of the kt function call

* Add some tests

* Use JavaDocumentationProvider to fetch java method document

* Support caret in params

#KT-32163 fixed
2020-04-27 18:15:24 +03:00

11 lines
198 B
Java
Vendored

/**
* Some Java Class
*/
public class SomeClassWithParen {
String str;
int num;
public SomeClassWithParen(String str, int num) {
this.str = str;
this.num = num;
}
}