2
votes
1answer
67 views

Allowed HTML tags in Javadoc

The Checkstyle rule JavadocStyle does not allow the tag <u>. According to the docs, the checks were patterned after the checks made by the DocCheck doclet available from Sun. Unfortunately, I ...
0
votes
0answers
33 views

Easier way to view javadocs

I want to keep sending my index.html file for someone to look at some generated javadocs. i don't want to keep sending all the associated files AND folders (i.e. actions, class-use + ALL HTML files, ...
1
vote
4answers
242 views

<tt> vs <code> elements when writing Java docs

To represent keywords while writing Java Docs should I use the <code> element or the <tt> element? Are there specific situations when one should be preferred over the other?
1
vote
1answer
67 views

Is javadoc html or xhtml?

I was typing some Javadoc into IntelliJ this morning and used a <br> tag, which IntelliJ autocompleted to <br>|</br> in its usual helpful way... but I'm under the impression that ...
1
vote
1answer
469 views

Eclipse JavaDoc Generation fails with IllegalArgumentException?

When I attempt to export or generate a javadoc for any of my javadoc commented classes I was always getting an error, until recently where it has just been generating entirely empty html files. This ...
0
votes
1answer
41 views

Get HTML file produced by JavaDocs

I understand that Javadoc is a documentation generator from Sun Microsystems for generating API documentation in HTML format from Java source code. I infer that the documentation is stored onto an ...
0
votes
0answers
75 views

how create executable javadoc jar using maven?

I have gotten Maven to create a jar that contains all the javadoc html files generated from the project. I would like to specify the "main" class of the jar to be the overview-summary.html file. This ...
0
votes
1answer
98 views

Javadoc multiline anchor tag

I'd like to do something like this: /** * Check out this <a href="#">external link</a>!. */ public void foo() { } However, the href for the external link is really long, like: ...
1
vote
0answers
212 views

NetBeans: Javadoc formatting with <code></code> HTML tags

I'm using NetBeans IDE 7.1.1 and recently discovered how to set the Java formatting schema up to my liking so I can easily format all my classes to a specific standard with a simple keystroke. ...
0
votes
2answers
228 views

How to include Google Analytics snippet in Javadoc?

I would like to include the Google Analytics Javascript code in the head element of my generated Javadoc HTML output. How can I do this? I figured I may need to write a custom Doclet, but this is ...
4
votes
1answer
315 views

Remove the comment “Generated by Javadoc on <date> <time>” in generated Javadoc

A javadoc command automatically inserts a comment stating something like: <!-- Generated by javadoc (build 1.6.0_17) on Thu Apr 07 18:32:31 CEST 2011 --> in every generated HTML file. This ...
2
votes
2answers
2k views

JavaDoc editor for Eclipse to create formatted text

im looking for a small plugin which let me create formated javadoc. at the moment im doing it with word (or http://tinymce.moxiecode.com/examples/full.php ) and save the text as a html file which then ...
5
votes
2answers
500 views

Javadocs without HTML

Robert C. Martin's book Clean Code contains the following: HTML in source code comments is an abomination [...] If comments are going to be extracted by some tool (like Javadoc) to appear in a Web ...
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: ...
11
votes
3answers
5k views

How to generate javadoc documentation with umlauts?

I am trying to generate javadocs in eclipse. The source files are UTF-8 encoded and contain some umlauts. The resulting html files do not specify an encoding and do not use html entities, so the ...
129
votes
10answers
40k 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++) { ...