mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-87040 JavaDoc @link autocompletion is inconsistent with JavaDoc rendering when used on static fields
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
public class TestClass {
|
||||
|
||||
public static final int MY_CONSTANT = 0;
|
||||
|
||||
/**
|
||||
* {@link #MY<caret>
|
||||
*/
|
||||
public class Inner {}
|
||||
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public class TestClass {
|
||||
|
||||
public static final int MY_CONSTANT = 0;
|
||||
|
||||
/**
|
||||
* {@link #MY_CONSTANT<caret>
|
||||
*/
|
||||
public class Inner {}
|
||||
|
||||
}
|
||||
@@ -176,6 +176,10 @@ public class JavadocCompletionTest extends LightFixtureCompletionTestCase {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testFieldReferenceInInnerClassJavadoc() throws Throwable {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testShortenClassReference() throws Throwable { doTest(); }
|
||||
public void testQualifiedClassReference() throws Throwable {
|
||||
configureByFile(getTestName(false) + ".java");
|
||||
|
||||
Reference in New Issue
Block a user