We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0dcddf commit 8ffb662Copy full SHA for 8ffb662
src/main/java/com/puppycrawl/tools/checkstyle/api/JavadocCommentsTokenTypes.java
@@ -1934,6 +1934,23 @@ public final class JavadocCommentsTokenTypes {
1934
1935
/**
1936
* String literal inside Javadoc.
1937
+ *
1938
+ * <p>Example in Javadoc:</p>
1939
1940
+ * <pre>{@code
1941
+ * {@see "foo"}
1942
+ * }</pre>
1943
1944
+ * <p>Tree:</p>
1945
1946
1947
+ * JAVADOC_BLOCK_TAG -> JAVADOC_BLOCK_TAG
1948
+ * `--SEE_BLOCK_TAG -> SEE_BLOCK_TAG
1949
+ * |--AT_SIGN -> @
1950
+ * |--TAG_NAME -> see
1951
+ * |--TEXT ->
1952
+ * `--STRING_LITERAL -> "foo"
1953
1954
*/
1955
public static final int STRING_LITERAL = JavadocCommentsLexer.STRING_LITERAL;
1956
0 commit comments