I have recently started using DocCheck for checking the validity of JavaDoc’s in code files.
Is there some way to set DocCheck up as an eclipse plugin?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This was deemed a great idea back in 2002, and still asked for in 2004…
But since then, pretty much all the features of the Sun Doc Check Doclet (experimental code developed originally for internal use at Sun and released to the developer community for use as-is) is pretty much covered by the ‘
Java Compiler / Javadoc‘ section of the Java project properties (albeit without the HTML rapports outputs)If you do want to have the DocCheck reports, I would recommend making a custom Project Builder, like this one (not related to DocCheck at all, just here to give you an example)
(source: bell-labs.com)
See also FAQ How do I implement an incremental project builder? or FAQ How do I create an external tool builder?
I would also recommend you set up this custom builder calling DocCheck only when doing a fill build (
IncrementalProjectBuilder.FULL_BUILD), in order to avoid to wait each time you save a file.