1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package com.puppycrawl.tools.checkstyle.api;
21
22 import com.puppycrawl.tools.checkstyle.grammar.javadoc.JavadocCommentsLexer;
23
24
25
26
27
28
29
30
31 public final class JavadocCommentsTokenTypes {
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47 public static final int JAVADOC_CONTENT = JavadocCommentsLexer.JAVADOC;
48
49
50
51
52 public static final int LEADING_ASTERISK = JavadocCommentsLexer.LEADING_ASTERISK;
53
54
55
56
57 public static final int NEWLINE = JavadocCommentsLexer.NEWLINE;
58
59
60
61
62 public static final int TEXT = JavadocCommentsLexer.TEXT;
63
64
65
66
67
68
69 public static final int JAVADOC_BLOCK_TAG = JavadocCommentsLexer.JAVADOC_BLOCK_TAG;
70
71
72
73
74 public static final int AT_SIGN = JavadocCommentsLexer.AT_SIGN;
75
76
77
78
79 public static final int AUTHOR_BLOCK_TAG = JavadocCommentsLexer.AUTHOR_BLOCK_TAG;
80
81
82
83
84 public static final int DEPRECATED_BLOCK_TAG = JavadocCommentsLexer.DEPRECATED_BLOCK_TAG;
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111 public static final int PARAM_BLOCK_TAG = JavadocCommentsLexer.PARAM_BLOCK_TAG;
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135 public static final int RETURN_BLOCK_TAG = JavadocCommentsLexer.RETURN_BLOCK_TAG;
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162 public static final int THROWS_BLOCK_TAG = JavadocCommentsLexer.THROWS_BLOCK_TAG;
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189 public static final int EXCEPTION_BLOCK_TAG = JavadocCommentsLexer.EXCEPTION_BLOCK_TAG;
190
191
192
193
194 public static final int SINCE_BLOCK_TAG = JavadocCommentsLexer.SINCE_BLOCK_TAG;
195
196
197
198
199 public static final int VERSION_BLOCK_TAG = JavadocCommentsLexer.VERSION_BLOCK_TAG;
200
201
202
203
204 public static final int SEE_BLOCK_TAG = JavadocCommentsLexer.SEE_BLOCK_TAG;
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229 public static final int HIDDEN_BLOCK_TAG = JavadocCommentsLexer.HIDDEN_BLOCK_TAG;
230
231
232
233
234 public static final int USES_BLOCK_TAG = JavadocCommentsLexer.USES_BLOCK_TAG;
235
236
237
238
239 public static final int PROVIDES_BLOCK_TAG = JavadocCommentsLexer.PROVIDES_BLOCK_TAG;
240
241
242
243
244 public static final int SERIAL_BLOCK_TAG = JavadocCommentsLexer.SERIAL_BLOCK_TAG;
245
246
247
248
249 public static final int SERIAL_DATA_BLOCK_TAG = JavadocCommentsLexer.SERIAL_DATA_BLOCK_TAG;
250
251
252
253
254 public static final int SERIAL_FIELD_BLOCK_TAG = JavadocCommentsLexer.SERIAL_FIELD_BLOCK_TAG;
255
256
257
258
259 public static final int CUSTOM_BLOCK_TAG = JavadocCommentsLexer.CUSTOM_BLOCK_TAG;
260
261
262
263
264
265
266 public static final int JAVADOC_INLINE_TAG = JavadocCommentsLexer.JAVADOC_INLINE_TAG;
267
268
269
270
271 public static final int JAVADOC_INLINE_TAG_START =
272 JavadocCommentsLexer.JAVADOC_INLINE_TAG_START;
273
274
275
276
277 public static final int JAVADOC_INLINE_TAG_END = JavadocCommentsLexer.JAVADOC_INLINE_TAG_END;
278
279
280
281
282 public static final int CODE_INLINE_TAG = JavadocCommentsLexer.CODE_INLINE_TAG;
283
284
285
286
287 public static final int LINK_INLINE_TAG = JavadocCommentsLexer.LINK_INLINE_TAG;
288
289
290
291
292 public static final int LINKPLAIN_INLINE_TAG = JavadocCommentsLexer.LINKPLAIN_INLINE_TAG;
293
294
295
296
297 public static final int VALUE_INLINE_TAG = JavadocCommentsLexer.VALUE_INLINE_TAG;
298
299
300
301
302 public static final int SUMMARY_INLINE_TAG = JavadocCommentsLexer.SUMMARY_INLINE_TAG;
303
304
305
306
307 public static final int INHERIT_DOC_INLINE_TAG = JavadocCommentsLexer.INHERIT_DOC_INLINE_TAG;
308
309
310
311
312 public static final int SYSTEM_PROPERTY_INLINE_TAG =
313 JavadocCommentsLexer.SYSTEM_PROPERTY_INLINE_TAG;
314
315
316
317
318 public static final int LITERAL_INLINE_TAG = JavadocCommentsLexer.LITERAL_INLINE_TAG;
319
320
321
322
323 public static final int RETURN_INLINE_TAG = JavadocCommentsLexer.RETURN_INLINE_TAG;
324
325
326
327
328 public static final int INDEX_INLINE_TAG = JavadocCommentsLexer.INDEX_INLINE_TAG;
329
330
331
332
333 public static final int SNIPPET_INLINE_TAG = JavadocCommentsLexer.SNIPPET_INLINE_TAG;
334
335
336
337
338 public static final int CUSTOM_INLINE_TAG = JavadocCommentsLexer.CUSTOM_INLINE_TAG;
339
340
341
342
343
344
345 public static final int IDENTIFIER = JavadocCommentsLexer.IDENTIFIER;
346
347
348
349
350 public static final int HASH = JavadocCommentsLexer.HASH;
351
352
353
354
355 public static final int LPAREN = JavadocCommentsLexer.LPAREN;
356
357
358
359
360 public static final int RPAREN = JavadocCommentsLexer.RPAREN;
361
362
363
364
365 public static final int COMMA = JavadocCommentsLexer.COMMA;
366
367
368
369
370 public static final int SLASH = JavadocCommentsLexer.SLASH;
371
372
373
374
375 public static final int QUESTION = JavadocCommentsLexer.QUESTION;
376
377
378
379
380 public static final int LT = JavadocCommentsLexer.LT;
381
382
383
384
385 public static final int GT = JavadocCommentsLexer.GT;
386
387
388
389
390 public static final int EXTENDS = JavadocCommentsLexer.EXTENDS;
391
392
393
394
395 public static final int SUPER = JavadocCommentsLexer.SUPER;
396
397
398
399
400 public static final int PARAMETER_TYPE = JavadocCommentsLexer.PARAMETER_TYPE;
401
402
403
404
405 public static final int REFERENCE = JavadocCommentsLexer.REFERENCE;
406
407
408
409
410 public static final int TYPE_NAME = JavadocCommentsLexer.TYPE_NAME;
411
412
413
414
415 public static final int MEMBER_REFERENCE = JavadocCommentsLexer.MEMBER_REFERENCE;
416
417
418
419
420 public static final int PARAMETER_TYPE_LIST = JavadocCommentsLexer.PARAMETER_TYPE_LIST;
421
422
423
424
425 public static final int TYPE_ARGUMENTS = JavadocCommentsLexer.TYPE_ARGUMENTS;
426
427
428
429
430 public static final int TYPE_ARGUMENT = JavadocCommentsLexer.TYPE_ARGUMENT;
431
432
433
434
435 public static final int DESCRIPTION = JavadocCommentsLexer.DESCRIPTION;
436
437
438
439
440 public static final int FORMAT_SPECIFIER = JavadocCommentsLexer.FORMAT_SPECIFIER;
441
442
443
444
445 public static final int SNIPPET_ATTR_NAME = JavadocCommentsLexer.SNIPPET_ATTR_NAME;
446
447
448
449
450 public static final int EQUALS = JavadocCommentsLexer.EQUALS;
451
452
453
454
455 public static final int ATTRIBUTE_VALUE = JavadocCommentsLexer.ATTRIBUTE_VALUE;
456
457
458
459
460 public static final int COLON = JavadocCommentsLexer.COLON;
461
462
463
464
465 public static final int INDEX_TERM = JavadocCommentsLexer.INDEX_TERM;
466
467
468
469
470 public static final int SNIPPET_ATTRIBUTE = JavadocCommentsLexer.SNIPPET_ATTRIBUTE;
471
472
473
474
475 public static final int SNIPPET_ATTRIBUTES = JavadocCommentsLexer.SNIPPET_ATTRIBUTES;
476
477
478
479
480 public static final int SNIPPET_BODY = JavadocCommentsLexer.SNIPPET_BODY;
481
482
483
484
485 public static final int FIELD_TYPE = JavadocCommentsLexer.FIELD_TYPE;
486
487
488
489
490 public static final int PARAMETER_NAME = JavadocCommentsLexer.PARAMETER_NAME;
491
492
493
494
495 public static final int STRING_LITERAL = JavadocCommentsLexer.STRING_LITERAL;
496
497
498
499
500
501
502 public static final int HTML_ELEMENT = JavadocCommentsLexer.HTML_ELEMENT;
503
504
505
506
507 public static final int VOID_ELEMENT = JavadocCommentsLexer.VOID_ELEMENT;
508
509
510
511
512 public static final int HTML_CONTENT = JavadocCommentsLexer.HTML_CONTENT;
513
514
515
516
517 public static final int HTML_ATTRIBUTE = JavadocCommentsLexer.HTML_ATTRIBUTE;
518
519
520
521
522 public static final int HTML_ATTRIBUTES = JavadocCommentsLexer.HTML_ATTRIBUTES;
523
524
525
526
527 public static final int HTML_TAG_START = JavadocCommentsLexer.HTML_TAG_START;
528
529
530
531
532 public static final int HTML_TAG_END = JavadocCommentsLexer.HTML_TAG_END;
533
534
535
536
537 public static final int TAG_OPEN = JavadocCommentsLexer.TAG_OPEN;
538
539
540
541
542 public static final int TAG_NAME = JavadocCommentsLexer.TAG_NAME;
543
544
545
546
547 public static final int TAG_CLOSE = JavadocCommentsLexer.TAG_CLOSE;
548
549
550
551
552 public static final int TAG_SLASH_CLOSE = JavadocCommentsLexer.TAG_SLASH_CLOSE;
553
554
555
556
557 public static final int TAG_SLASH = JavadocCommentsLexer.TAG_SLASH;
558
559
560
561
562 public static final int TAG_ATTR_NAME = JavadocCommentsLexer.TAG_ATTR_NAME;
563
564
565
566
567 public static final int HTML_COMMENT = JavadocCommentsLexer.HTML_COMMENT;
568
569
570
571
572 public static final int HTML_COMMENT_START = JavadocCommentsLexer.HTML_COMMENT_START;
573
574
575
576
577 public static final int HTML_COMMENT_END = JavadocCommentsLexer.HTML_COMMENT_END;
578
579
580
581
582 public static final int HTML_COMMENT_CONTENT = JavadocCommentsLexer.HTML_COMMENT_CONTENT;
583
584
585 private JavadocCommentsTokenTypes() {
586 }
587 }