Files
openide/java/java-tests/testData/codeInsight/javadocIG/escapingStringValue.java
Dmitry Batrak e6a6f609ea IDEA-164610 Quick documentation should escape angle brackets at the value of a String field referred via @value (javadoc tag)
also add quotes to string value, and convert value into a link to corresponding field's javadoc, like javadoc tool does
2016-11-30 18:01:44 +03:00

7 lines
125 B
Java

class A {
public static String B = "a<b";
/** The value of B is {@value #B}. */
public static void JAVADOC_ME() { }
}