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)

94
votes
7answers
13k views

How to attach javadoc or sources to jars in libs folder?

New version of ADT r17 plugin for Eclipse added feature to automatically setup JAR dependencies. Any .jar files in the /libs folder are added to the build configuration now. Unfortunately Android ...
7
votes
4answers
22k views

Eclipse: Attach source/javadoc to a library via a local property

I have a third-party library in my SVN repository and I'd like to associate source/javadoc with it locally in Eclipse. I.e., there should be some local setting (for example, an entry in the ...
52
votes
14answers
47k 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 ...
7
votes
8answers
5k views

Code documentation for delphi similar to javadoc or c# xml doc

I need a code documentation tool similar to javadoc or c# xml doc for delphi code. What is the best tool? I prefer a technology, which is in the future compatible to the Microsoft sandcastle project. ...
28
votes
3answers
13k 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 ...
13
votes
5answers
6k views

C/C++ Header file documentation

What do you think is best practice when creating public header files in C++? Should header files contain no, brief or massive documentation? I've seen everything from almost no documentation ...
62
votes
8answers
13k views

Technical tips for writing great Javadoc [closed]

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 ...
34
votes
3answers
9k views

How do I change the Javadocs template generated in Eclipse?

I dislike the default Javadocs generated for me when I create a Class or methods, especially the @author variable, which is the current system username on my windows box. I would like to change it. ...
14
votes
5answers
11k 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 ...
8
votes
2answers
508 views

Is there a standard for documenting GET/POST parameters?

In a PHP project, even when front controller logic is used for the main application, there can be many stand-alone scripts, ajax snippets and so on. Is there a standardized way - either PHPDoc or ...
4
votes
1answer
433 views

Display Javadoc with Autocomplete Parameter Information in Intellij

In Eclipse, when you're about to enter parameters for a method, the auto-complete will display all possible combinations as well as the Javadoc associated with each of them. This can also be triggered ...
44
votes
13answers
4k 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 ...
15
votes
5answers
6k 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: ...
35
votes
2answers
15k 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 ...
19
votes
7answers
5k 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 ...
14
votes
2answers
4k views

How to make generated classes contain Javadoc from XML Schema documentation

I'm currently working with an XML Schema that has <xsd:annotation>/<xsd:documentation> on most types and elements. When I generate Java Beans from this XML Schema, then the Javadoc of ...
10
votes
7answers
6k views

Javadoc in Eclipse failing to recognize packages

Thanks to this thread, I was able to get Javadoc links to work for my Android project within Eclipse on Windows. Specifically, "{@link android.widget.Toast}" is currently converted into a link to ...
13
votes
2answers
7k views

JavaDoc Style Sheets

I was wondering. Did any of you have a JavaDoc style sheet? Defaults one is pretty uggly. Thanks!
10
votes
8answers
9k views

How to automatically generate comments for getter/setter based on field comments in Eclipse?

I want Eclipse to automatically generate Javadoc comments for my getter and setter methods based on the previously defined comments for the fields. How can I achieve this? Background: A policy in our ...
7
votes
2answers
419 views

Is there any disadvantage to putting API code into a JAR along with the classes?

In Java if you package the source code (.java) files into the jar along with classes (.class) most IDE's like eclipse will show the javadoc comments for code completion. IIRC there are few ...
12
votes
5answers
10k views

How to attach source or JavaDoc in eclipse for any jar file e.g. JavaFX?

Presently i am working with JavaFX. Whenever I hover on any method of JavaFX its gives me error 'Note: This element neither has attached source nor attached Javadoc and hence no Javadoc could be ...
7
votes
5answers
5k views

How do I exclude a specific method/constructor from the results of the javadoc Ant task?

I'm using javadocs generated by the javadoc Ant task to document a web service, and I want to exclude some constructors from the output. How do I do that?
6
votes
2answers
1k views

Regex for matching javadoc fragments

This question got me thinking in a regex for matching javadoc comments that include some specified text. For example, finding all javadoc fragments that include @deprecated: /** * Method1 * ..... * ...
3
votes
1answer
622 views

Inherit javadoc, without generating docs for inherited source

I would like class B to inherit the Javadoc from an interface that it implements, interface A. I have included the source for interface A in my Javadoc command, and class B correctly inherits the ...
2
votes
2answers
2k views

UmlGraph vs APIViz for Maven javadoc generation

I'm wondering if there are any clear reasons to choose UmlGraph over APIViz for javadoc UML diagram generation in a Maven2 build. Are there any integration or features that one has over the other, ...
5
votes
2answers
2k views

Java Javadoc include Private

I would like to generate javadocs for my application and i would also like to include private members. I have found the following in the Javadoc documentation -private Shows all ...
100
votes
1answer
33k 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 ...
19
votes
8answers
3k 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 ...
54
votes
14answers
11k 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 ...
43
votes
4answers
6k 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?
15
votes
5answers
3k views

How to install javadoc for Android Compatibility Package?

How to generate custom javadoc for android 1.4 compatibility package? The reference docs are available online (example), but is there some place where I can get a zip with javadoc available offline? ...
11
votes
13answers
4k 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 ...
12
votes
5answers
24k views

How do I add the Java API documentation to Eclipse?

I have downloaded Java API documentation from http://www.oracle.com/technetwork/java/javase/downloads/index.html#docs and have supposedly attached it to Eclipse using the ...
10
votes
2answers
1k views

Search JavaDoc in Eclipse

Is there a way to search in javadoc comments only (via Eclipse)? I just want to find text within a javadoc comment...
17
votes
3answers
18k views

Any way to auto generate ALL Javadoc comments in Eclipse?

I know that you can press shift+alt+j to insert an appropriate comment template for the current code block, but is there any way to let eclipse just go crazy and do a whole project like this?
4
votes
3answers
3k views

How to turn off the Javadoc hover in Eclipse (or selectively enable it)?

A fellow developer dislikes the Eclipse hovering Javadoc and would like to disable it (one option), or, better yet, only selectively enable it (other option). He's using Eclipse 3.3. Is this ...
14
votes
3answers
10k views

Best java tools for emacs [closed]

I'm a long-time emacs user, and I'm now working about 1/2 time in Java. What are the best emacs libraries for Debugging Java Code Completion/Intellisense Javadoc browsing ?
8
votes
1answer
308 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 ...
5
votes
1answer
2k views

Maven - Java EE 6 Web Profile Javadocs

By declaring the following dependency: <dependency> <groupId>javax</groupId> <artifactId>javaee-web-api</artifactId> <version>6.0</version> ...
1
vote
5answers
3k views

How do I get Eclipse to show the javadoc from my classes without including sources in the jar

I'm building jars where I want to package them without sources but I would like the javadoc to come up for developers in eclipse.
9
votes
4answers
1k views

Does Javadoc have an equivalent to <![CDATA[ … ]]>?

Unfortunately, there is no CDATA in HTML. This is a pity, because it would be perfect for adding javadoc comments that include XML, so you don't have to escape the < and >, for example: ...
6
votes
4answers
3k views

How to create custom javadoc tags

How to create custom javadoc tags such as @pre / @post... I found some links that explain it but i haven had luck with them, i dont know if that am already tired but i can figure where to put it. ...
3
votes
1answer
2k views

How can I make an Ant Javadoc class exclude two files?

I am documenting some Java webservices and the supporting datatypes. There are two services that I do not want documented. What is the correct way to exclude a small number of files from the Ant ...
2
votes
1answer
3k views

How to build javadoc from sources within a .jar file?

I have to build Javadoc from myCode.jar that contains both sources and class files. Can I do it without extracting the jar? According to ...
1
vote
4answers
4k views

javadoc location for eclipse offline

The help for Java in Eclipse (ordinary Java development, not Android), is set to an online URL at Oracle's server, linked to http://docs.oracle.com/javase/6/docs/api/. However, with one specific ...
23
votes
5answers
2k 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 ...
11
votes
2answers
3k views

Does “/* (non-javadoc)” have a well-understood meaning?

Does /* (non-javadoc) have a meaning, beyond pointing out to the reader of source code that a comment block is intentionally not a Javadoc comment? Lately I've seen a lot of code that looks like this: ...
9
votes
2answers
13k views

How to view Javadoc in Eclipse?

I am using a third party library, i have included into my project. It contains classes for the application, but no sources, or Javadoc. As expected, mouse-over imported object shows no javadoc. Note: ...
5
votes
4answers
4k views

generating javadoc as a word document

How can we generate javadoc as a word document instead of the traditional html pages?
4
votes
1answer
2k views

How to use javadoc:aggregate properly in multi-module maven project?

This is my parent pom.xml file (part of it) in a multi-module project: ... <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> ...

1 2 3