File tree 1 file changed +22
-1
lines changed
src/main/java/com/puppycrawl/tools/checkstyle/api
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -2634,7 +2634,28 @@ public final class JavadocTokenTypes {
2634
2634
/** Frame html tag. */
2635
2635
public static final int FRAME_TAG = JavadocParser .RULE_frameTag + RULE_TYPES_OFFSET ;
2636
2636
2637
- /** Hr html tag. */
2637
+ /**
2638
+ * Hr html tag.
2639
+ *
2640
+ * <p><b>Example:</b></p>
2641
+ * <pre>{@code text above line<hr> test after line}</pre>
2642
+ * <b>Tree:</b>
2643
+ * <pre>
2644
+ * {@code
2645
+ * |--LEADING_ASTERISK -> *
2646
+ * |--TEXT -> text above line
2647
+ * |--HTML_ELEMENT -> HTML_ELEMENT
2648
+ * | `--SINGLETON_ELEMENT -> SINGLETON_ELEMENT
2649
+ * | `--HR_TAG -> HR_TAG
2650
+ * | |--START -> <
2651
+ * | |--HR_HTML_TAG_NAME -> hr
2652
+ * | `--END -> >
2653
+ * |--TEXT -> test after line
2654
+ * |--NEWLINE -> \r\n
2655
+ * |--TEXT ->
2656
+ * }
2657
+ * </pre>
2658
+ */
2638
2659
public static final int HR_TAG = JavadocParser .RULE_hrTag + RULE_TYPES_OFFSET ;
2639
2660
2640
2661
/**
You can’t perform that action at this time.
0 commit comments