up vote 5 down vote favorite
2
share [g+] share [fb]

is there a good example of a source file containing Javadoc?

I can find lots of good examples of Javadoc on the internet, I would just like to find out the particular syntax used to create them, and assume I can pore through the source of some library somewhere but that seems like a lot of work.

link|improve this question

72% accept rate
feedback

9 Answers

up vote 9 down vote accepted

How about the JDK source code, but accessed through a 3rd party like docjar? For example, the Collections source.

That way, there's no big download.

link|improve this answer
aha! thanks! :-) – Jason S Jul 3 '09 at 15:22
Thats a good answer since collections where written by Josh and Neal. – cherouvim Jul 3 '09 at 17:00
feedback

How about the JDK source code?

link|improve this answer
that was my obvious thought but I'd have to download the whole big mess. :-( – Jason S Jul 3 '09 at 15:00
Chances are you already have it, since it comes with the JDK (though it's an installation option). – Michael Borgwardt Jul 3 '09 at 16:03
feedback

The page How to Write Doc Coments for the Javadoc Tool contains a good number of good examples. One section is called Examples of Doc Comments and contains quite a few usages.

Also, the Javadoc FAQ contains some more examples to illustrate the answers.

link|improve this answer
feedback

Download the sources of Lucene and see how they do it. They have good JavaDocs.

link|improve this answer
feedback

I use a small set of documentation patterns:

  • always documenting about thread-safety
  • always documenting immutability
  • javadoc with examples (like Formatter)
  • @Deprecation with WHY and HOW to replace the annotated element
link|improve this answer
feedback

If all your looking for is the syntax, then this may help:

http://java.sun.com/j2se/javadoc/writingdoccomments/[1]

link|improve this answer
thanks, already aware of that though (see my question) – Jason S Jul 3 '09 at 15:23
feedback

Have a look at Spring framework source, it has excellent javadocs

link|improve this answer
feedback

If you install a JDK and choose to install sources too, the src.zip contains the source of ALL the public Java classes. Most of these have pretty good javadoc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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