mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 13:20:53 +07:00
also add quotes to string value, and convert value into a link to corresponding field's javadoc, like javadoc tool does
7 lines
125 B
Java
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() { }
|
|
}
|