Javadoc is an extensible documentation generation system which reads specially formatted comments in Java source code and generates compiled documentation. It is typically used to produce API documentation in the form of HTML web pages.

learn more… | top users | synonyms (1)

44
votes
6answers
1k views

Why does the Double.valueof javadoc say it caches values, when it doesn't?

In OpenJDK, for the method: public static Double valueOf(double d) The javadoc says: Returns a Double instance representing the specified double value. If a new Double instance is not required, ...
43
votes
6answers
15k views

Multiple line code example in Javadoc comment

I have a small code example I want to include in the Javadoc comment for a method. /** * -- ex: looping through List of Map objects -- * <code> * for (int i = 0; i < list.size(); i++) { ...
42
votes
7answers
11k views

Python documentation generator

I'm looking for a documentation generator for python. I'm familiar with javadoc, and I tried Doxygen, but it seems quite unfit and counter-intuitive for Python. Any ideas? Adam EDIT Apart from the ...
35
votes
8answers
6k views

Technical tips for writing great JavaDoc

What are your technical tips for writing great JavaDoc? I'm looking for things beyond the standard "Explain the function well" content-based tips. We all know that! (right?) I'm interested in ...
33
votes
14answers
5k views

Simple Getter/Setter comments

What convention do you use to comment getters and setters? This is something I've wondered for quite some time, for instance: /** * (1a) what do you put here? * @param salary (1b) what do you put ...
32
votes
1answer
9k views

Linking to an external URL in Javadoc?

Something like: /** * See {@linktourl http://google.com} */
28
votes
12answers
2k views

Are there some good and modern alternatives to Javadoc?

Let's face it: You don't need to be a designer to see that default Javadoc looks ugly. There are some resources on the web which offer re-styled Javadoc. But the default behaviour represents the ...
22
votes
4answers
4k views

Reference a method parameter in javadoc

Is there a way to reference one of the method parameters from the method documentation body? Something like: /** * When {@paramref a} is null, we rely on b for the discombobulation. * * @param a ...
21
votes
4answers
6k views

JDK documentation in IntelliJ IDEA on Mac OS X

I'd like to know how to setup IntelliJ to point to the JDK documentation so the documentation popups that display during code completion will show me what the function I'm looking at is going to do. ...
21
votes
1answer
7k views

Javadoc: package.html or package-info.java

When trying to create package level Javadoc comments, whats the preferred method? What do you do? Package-info.java Pros Newer Cons Abuse of a class - Classes are for code, not for only comments ...
21
votes
10answers
24k views

Get source jar files attached to Eclipse for Maven-managed dependencies

I am using Maven (and the Maven Eclipse Integration) to manage the dependencies for my Java projects in Eclipse. The automatic download feature for JAR files from the Maven repositories is a real time ...
21
votes
3answers
10k views

Why am I getting a ClassCastException when generating javadocs?

I'm using ant to generate javadocs, but get this exception over and over - why? I'm using JDK version 1.6.0_06. [javadoc] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be ...
18
votes
8answers
2k views

A tool to add and complete PHP source code documentation

I have several finished, older PHP projects with a lot of includes that I would like to document in javadoc/phpDocumentor style. While working through each file manually and being forced to do a ...
18
votes
5answers
804 views

How to quote “*/” in JavaDocs

I have a need to include */ in my JavaDoc comment. The problem is that this is also the same sequence for closing a comment. What the proper way to quote/escape this? Example: /** * Returns true if ...
16
votes
2answers
5k views

JavaDoc in an Eclipse Android Project

In our Android project, our code is JavaDoc'd and that generates everything properly. However, any reference to the Android API classes/functions results in a JavaDoc error and a link to the relevant ...
15
votes
4answers
6k views

What is the best way to use JavaDoc to document a Java enum?

I've just started using Java's enums in my own projects (I have to use JDK 1.4 at work) and I am confused as to the best practice of using JavaDoc for an enum. I have found that this method works, ...
14
votes
2answers
2k views

How to write Javadoc of properties?

I often find myself with a dilemma when writing javadoc for properties/members of a "simple" POJO class holding only properties and getters and setters (DTO-style).... 1) Write javadoc for the ...
14
votes
3answers
7k views

Can I add JavaDoc to a package easily with Eclipse?

I use javadoc to document my classes and methods. I would like to add some overview information to my packages, too. I like how Eclipse creates a stub of a matching Doc Comment for each class or ...
14
votes
4answers
1k views

How Do I Document Packages in Java?

In the Java APIs I can see Javadoc comments for packages. How/where do I place Javadoc comments to document a package?
14
votes
16answers
5k views

Do you use Javadoc for every method you write?

Should I be writing Doc Comments for all of my java methods?
13
votes
1answer
2k views

Java AtomicInteger: what are the differences between compareAndSet and weakCompareAndSet?

(note that this question is not about CAS, it's about the "May fail spuriously" Javadoc). The only difference in the Javadoc between these two methods from the AtomicInteger class is that the ...
12
votes
3answers
713 views

State of the Art for Clojure Documentation Tools

Over the last year or so I've seen various announcements on the Clojure discussion list and other places about tools for documenting Clojure code. These range from full-on literate programming systems ...
11
votes
1answer
456 views

Grails: Alternatives to Grails Doc?

The documentation created by running grails doc is not completely satisfactory in my eyes. For example, actions in controllers appear as properties in the documentation, though I would wish the have ...
11
votes
5answers
23k views

How can I generate Javadoc comments in Eclipse? [closed]

Possible Duplicate: Javadoc template generator Is there a way to generate Javadoc comments in Eclipse? If so, what is it?
11
votes
3answers
15k views

How to write javadoc links?

How do I write links into javadocs? Currently, I have something like: {@link java.lang.Math#sqrt(double) Math.sqrt} to produce the text Math.sqrt that should link to the ...
10
votes
3answers
761 views

Should I use JavaDoc deprecation or the annotation in Java?

There are at the moment, two ways to mark code as depreacted in java. Via JavaDoc /* * @deprecated */ Or as an annotation: @Deprecated This is my problem - I find it a bit too much to declare ...
10
votes
5answers
2k views

How can you escape the @ character in javadoc?

How can I escape the @ symbol in javadoc? I am trying to use it inside a {@code} tag which is inside pre tags. I already tried the html escape & #64; sequence but that didn't work.
9
votes
1answer
125 views

Making JavaDoc robust against refactoring

I'm working on an application which is constantly refactored to improve it. Now, if we rename a certain class to better capture its intention, all the documentation mentioning the class does not get ...
9
votes
7answers
826 views

Should JavaDoc comments be added to the implementation

Is it correct practice to add Javadoc comments in Interface and add non Javadoc comments in the implementation? Most IDEs generate non JavaDoc comments for implementations when you auto generate ...
9
votes
3answers
3k views

How to generate links to the android Classes' reference in javadoc?

When I generate javadoc for my Android project in Eclipse, there are lots of warnings like cannot find symbol symbol : class TextView and warning - Tag @see: reference not found: ...
9
votes
4answers
176 views

How to get up-to-date search results when searching for javadoc

Recently I've observed a lot of people still giving links to javadocs of 1.4.2. This is not quite a good practice and I'd like to raise the question. This happens because search engines (Google at ...
9
votes
5answers
649 views

Javadoc Inserting UML Diagrams

Is there a way to embed images into my JavaDoc? Basically i want to include some UML diagrams explaining the hierarchy of my classes in some of the documentation. Thanks!
9
votes
2answers
9k views

javadoc @link

I wrote two methods in class Util: public static final <T> T[] copy1(T[] source) {...} public static final <T> T[] copy2(T[] source) {...} Javadoc for method copy2 includes: {@link ...
8
votes
4answers
128 views

Should I use /* */ or /** */ for the copyright in the top of a java file?

There is a copyright comment in each java file, but I don't know which one should I use: /* */ or /** */? /* * Copyright ... */ import java.util.* ... or /** * Copyright ... */ import ...
8
votes
4answers
242 views

Using Eclipse compiler instead of javac results in javadoc crash

Summary: I've run into an interesting problem, and I'm not quite sure how to sleuth it: Our project has been building fine for months I changed the maven-compiler-plugin to use the eclipse compiler ...
8
votes
1answer
233 views

How to include javadoc of scala code when distributing library Jars?

This question is related to calling scala code from java code. When I include some scala library (in jar format), the return types are often of type scala.collection and other Scala types. When ...
8
votes
2answers
317 views

How do I automatically convert all javadoc package.html files into package-info.java files?

We use a lot of legacy package.html files in our project and we want to convert them to package-info.java files. Doing that manually isn't an option (way too many files). Is there a good way to ...
8
votes
5answers
370 views

Does source code management make Javadoc's @author and @since redundant?

In most teams there is a rule that says that the @author and @since keywords have to be used for all documented classes, sometimes even methods. In an attempt to focus on what matters, I don't use ...
8
votes
4answers
317 views

Javadoc with Equations?

I'm only familiar with the no-frills javadoc generator, however I'd like to include some mathematical equations in my javadoc (rather than constantly referencing another document). Is there a ...
8
votes
3answers
404 views

codestyle; put javadoc before or after annotation?

I know that it isn't the most vital of issues, but I just realised that I can put the javadoc comment block before or after the annotation. What would we want to adopt as a coding standard? /** * ...
8
votes
13answers
1k views

How to manage @todo programming stuff?

For many years my code was full of this kind of comments : //TODO : Add ... ... /* *TODO : Fix ... * */ Now I think to create my own @todo javadoc annotation ... but before doing that I want to ...
8
votes
3answers
759 views

Append new JavaDoc to existing from super method

I have generated an Interface which is very well documented. Every method does have his own JavaDoc. The clases which implement this Interface can have little differents in their logic. How can i add ...
8
votes
9answers
3k views

How do you read JavaDoc?

What tools/websites do you use to read JavaDocs? I currently use Firefox with 20+ tabs open when working on a J2EE project to have all the documentation available which is not very usable, is eating ...
8
votes
4answers
5k views

Javadoc template generator

I have a large codebase without javadoc and I want to run a program to write a skeleton with the basic javadoc information (e.g. for each method's parameter write @param...) so I just have to fill the ...
7
votes
5answers
153 views

Designing APIs in Java with top-down approach - Is writing up the Javadoc the best starting point?

Whenever I have the need to design an API in Java, I normally start off by opening up my IDE, and creating the packages, classes and interfaces. The method implementations are all dummy, but the ...
7
votes
4answers
205 views

Java API interface

Ever since I started playing around with Scala, I have had one big question concerning the Java API: why does Oracle keep the same old HTML page with "frameset" tags and no search function at all? It ...
7
votes
1answer
164 views

Stackoverflow markup for javadoc

After a while I'm back writing JavaDoc. At the same time I grew fond of SO's markup, which is way more readable in plaintext than HTML. (Even the back tick wich I never used before, ever). /** * I'm ...
7
votes
1answer
143 views

Is it possible do create Java classes from JavaDoc?

Here is the problem: Currently my team work for a vendor, that provided us a huge JavaDoc spec from their library, but did not provide the .jar file with stubs or implementation. We already talked to ...
7
votes
3answers
1k views

Maven site (Maven 3) generates empty site folder

I'm attempting to create a basic maven site using the maven site plugin. So I added this to my pom: <reporting> <plugins> <!--JavaDoc setup--> <plugin> ...
7
votes
3answers
207 views

Side-effect free methods in the Java Standard Library

I'm working on an analysis for Java programs that requires side-effect information about method calls. For standard library classes, I would like to compile a list of methods with read-only ...

1 2 3 4 5 14