vote up 1 vote down star

When programming in C++, I use Doxygen and frequently create external .dox files for additional documentation that won't fit well in a specific class or method - for instance, file format documentation (for files that are accessed by multiple classes). I tried to find a way to do the same in Java, but it appears that javadoc doesn't have an equivalent feature, all documentation must be written inside the comments of a .java file and is tied to it (or at least to its package). Am I right? Is there an alternative way to do this?

flag

2 Answers

vote up 2 vote down check

If you're asking if Javadoc can create external documentation, then the answer is no. But you can link to external documentation you've already made. Additionally, if something applies to the package level, you can put the documentation in the package file instead of attaching it to a particular class or method.

link|flag
What do you think about creating a package and classes just to contain such bits of information (I mean, empty classes that aren't used by anyone, just to have a place to put these docs). Would it be too ugly? – Fabio Ceconello Mar 9 at 19:28
Yes, I think that would be an error. Don't pollute your source code for the sake of documentation! :) – John Feminella Mar 9 at 23:37
What about a script that takes a comment file - let's say a .jdoc, wraps it in a temp .java file with a stub empty class, runs javadoc compiler and then deletes the temp file? – Fabio Ceconello Mar 10 at 18:00
I'd say that one is more just a clever use of the javadoc compiler than polluting your source code, so I don't think there's any issue with that. Just make sure it doesn't affect any real code! – John Feminella Mar 17 at 13:26
vote up 3 vote down

The section “Miscellaneous Unprocessed Files” from the javadoc documentation is what you’re looking for.

link|flag
Thanks, I knew about MUF but I was looking for something a bit different. What I miss is that when you create a .dox file for Doxygen you can use the same syntax (you can put @see, @version, etc.) inside the .dox to link to/from it, and with a static HTML this would not be possible. – Fabio Ceconello Mar 9 at 19:24
Correction - of course you could put an HTML link, but it wouldn't be updated if the linked item is moved. – Fabio Ceconello Mar 9 at 19:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.