We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{@value target} is not displayed as expected. Java spec describing the feature: https://docs.oracle.com/javase/8/docs/technotes/tools/windows/javadoc.html#CHDDCDHH
{@value target}
Actual value to be inserted, the value according to latest javadoc generator should(?) be with quotes included
/** * {@link Test#CONSTANT_LINK} * <p> * {@value Test#CONSTANT_VALUE} */ public class Test { public static final String CONSTANT_LINK = "hello link"; public static final String CONSTANT_VALUE = "hello value"; }
The text was updated successfully, but these errors were encountered:
I confirm this is an issue in upstream Eclipse JDT (that vscode-java consumes). Could you please open this ticket in https://github.com/eclipse-jdt/eclipse.jdt.core/issues?
Sorry, something went wrong.
@fbricon got rejected there, what now?
I'm currently touching the javadoc rendering code in jdt.ls, so I'll see where the problem is then.
This seems to be working in latest versions
No branches or pull requests
{@value target}
is not displayed as expected.Java spec describing the feature: https://docs.oracle.com/javase/8/docs/technotes/tools/windows/javadoc.html#CHDDCDHH
Environment
Steps To Reproduce
Current Result
Expected Result
Actual value to be inserted, the value according to latest javadoc generator should(?) be with quotes included
Additional Informations
The text was updated successfully, but these errors were encountered: