jdk-24/test/langtools/tools/doclint/tidy
Yoshiki Sato 28e1f4d9ee 8247957: remove doclint support for HTML 4
8257204: Remove usage of -Xhtmlversion option from javac
8256313: JavaCompilation.gmk needs to be updated not to use --doclint-format html5 option
8258460: Remove --doclint-format option from javac
8256312: Valid anchor 'id' value not allowed

Reviewed-by: jjg, ihse
2021-01-06 22:48:00 +00:00
..
util 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
AnchorAlreadyDefined.java 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
AnchorAlreadyDefined.out 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
BadEnd.java 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
BadEnd.out 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
InsertImplicit.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
InsertImplicit.out 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
InvalidEntity.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
InvalidEntity.out 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
InvalidName.java 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
InvalidName.out 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
InvalidTag.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
InvalidTag.out 8247788: DocCommentParser should not reject standalone '>' 2020-06-18 14:07:49 -07:00
InvalidURI.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
InvalidURI.out 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
MissingGT.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
MissingGT.out 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
MissingTag.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
MissingTag.out 8220379: Fix doclint handling of headings 2019-03-14 11:39:00 -07:00
NestedTag.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
NestedTag.out 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
ParaInPre.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
ParaInPre.out 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
README.txt 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
RepeatedAttr.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
RepeatedAttr.out 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
TextNotAllowed.java 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
TextNotAllowed.out 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
TrimmingEmptyTag.java 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
TrimmingEmptyTag.out 8247957: remove doclint support for HTML 4 2021-01-06 22:48:00 +00:00
UnescapedOrUnknownEntity.java 8252712: move doclint to jdk.javadoc module 2020-09-23 19:55:08 +00:00
UnescapedOrUnknownEntity.out 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00

The utilities in this directory can be used to determine
common issues in javadoc comments by running the standard
"tidy" program on the output of javadoc, and analysing
the messages that are reported.

tidy.sh is a script that will run the "tidy" program on
the files in a directory, writing the results to a new
directroy.

tidystats.Main is a Java program that can analyze the 
files produced by the tidy.sh script to generate a 
summary report about the warnings that were found.


The tests is this directory are focussed on verifying
that doclint detects issues in javadoc comments that will
give rise to issues detected by "tidy" in the output
generated by javadoc. 

For more information on the "tidy" program, see the HTML Tidy
Library Project page at http://tidy.sourceforge.net/.