Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 product and should be as reasonably good-looking.

Another problem is the fact that the usability of Javadoc is not up-to-date compared to other similar resources.

Especially huge projects are hard to navigate using Firefox's quick search.

Practical question:
Are there any standalone (desktop) applications which are able to browse existing Javadoc in a more usable way than a browser would?
I'm thinking about something like Mono's documentation browser.

Theoretical question:
Does anyone know, if there some plans to evolve Javadoc, in a somehow-standardized way?
EDIT: A useful link to Sun' wiki on this topic.

share|improve this question
3  
I would be happy if javadoc would generate valid HTML 4.01 or XHTML pages. – kd304 Jun 22 '09 at 11:02
2  
What usabilitiy problems do you have? – basszero Jun 22 '09 at 11:04
7  
Why would anyone downvote this? I think it is a reasonable question: +1 – Daniel Sloof Jun 22 '09 at 11:06
2  
(X)HTML should not be the only way for Javadoc. The browser is a very limited tool for accessing a (local) knowledge base. – ivan_ivanovich_ivanoff Jun 22 '09 at 11:06
10  
I personally like Javadoc. It's clear, concise, and to the point. The MSDN site on the other hand... – samoz Jun 22 '09 at 11:14
show 11 more comments

13 Answers

I have created a Markdown (java) Doclet which will take source comments in Markdown formatted text and create the same HTML Javadocs.

The new doclet also does some restyling on the text, but the HTML generated is not changed at this stage.

That goes some way to address the HTML-in-java-commenting issues which is probably the biggest usability problem with current Javadoc.

share|improve this answer

I don't think that the concepts of Javadoc are outdated. As far as i can see, these concepts are rooted years ago in a product named doxygen, which is still available for other languages (i.e. Objective-C where it is heavily used). Even this has it's predecessors - have a look at the programming environment used by Donald Knuth to create TeX (Literate programming).

Nevertheless it is a intriguing idea to have a single source for program code and documentation.

Besides of that, the presentation of the documentation can be customized to your special needs using a plug-in system supported by the JavaDoc tool. You might provide a plug-in (as we do) that publishes directly into a database which is directly accessible via web. Using collaborations anyone can provide additional comments or clarifications to the documentation that might find their way back into the original source.

share|improve this answer
1  
s/Literacy/Literate – laalto Jun 22 '09 at 11:16

Javadoc is the best source code auto-documentation generation system I've ever seen. Large part of that is that it's so simple - I can browse javadocs even with my 5 year old cell phone if I want to! While I agree that a bit of a facelift could be in order and especially JDK is a pain to browse through, I wouldn't dare reinventing the wheel entirely because what we currently have is a RESTful, easy to use solution for its purpose which works just about anywhere.

share|improve this answer
1  
Well, with the problem that the intra-page links (e.g. http://download.oracle.com/javase/6/docs/api/java/lang/String.html#String(byte[‌​])) are invalid since they use parentheses, brackets and other characters that aren't allowed. This causes them to break in some browsers. – Јοеу Oct 15 '10 at 11:37
BTW, an update to this comment, I actually do think nowadays that scaladoc2 (see scala-lang.org/api/current/index.html) is actually better than javadoc, although mostly because it borrows the good parts from javadocs and then adds some other nifty things in there. – Esko Jan 19 '11 at 19:24
1  
Yet another update, javadoc system got an overhaul in JDK7 and looks rather spiffy nowadays, for reference check the official API javadoc at download.oracle.com/javase/7/docs/api – Esko Aug 30 '11 at 15:09

I recently got a mail forwarded that Sun is working on modernizing the Javadoc HTML output. From said mail:

We are proposing improvements to javadoc/doclet for JDK7. The project wiki page is located at http://wikis.sun.com/display/Javadoc/Home. As a part of the proposed improvements, the UI of the javadoc output will be revamped. The new design screenshots are uploaded to the project wiki. The javadoc output markup will be modified to be valid HTML and WCAG 2.0 compliant.

So there is definitely still work going on there, even if somewhat late. However, in my eyes one of the biggest drawbacks of Javadoc is its very close coupling with HTML. Many classes have Javadoc which includes literal HTML and relies on the output being HTML, too. Unfortunate, but this won't change anytime, I think. Still, this means that developers are free to include whatever they want in HTML there which might as well be invalid, non-well-formed, etc. So adapting the output from the javadoc tool is only one part of this, the other won't and can't change and thus remains.

As for browsing documentation I also find the HTML documentation a little unwieldy. I usually use the Javadoc view in Eclipse. It has drawbacks as well (slow and you can't really search) but it's Good Enough™ for most things.

share|improve this answer
very informative, thanks – willcodejavaforfood Jun 23 '09 at 9:33
GREAT NEWS !!! THANK YOU !!! I will now edit my question to provide this useful link. – ivan_ivanovich_ivanoff Jun 23 '09 at 9:38
@ivan_ivanovich_ivanoff, perhaps you could voice your concerns with the Sun team too. Sounds like if they can make you happy, it will benefit the all of us. – Thorbjørn Ravn Andersen May 28 '10 at 7:18

To answer your Practical Question, I googled and asked friends and came up with these. Forrestdoc,doclet and doxygen.

The second question, I would say that yes, its not very "Web-oh-twoeye" but At least your guaranteed to work in an offline environment, and its small enough to ship along with your API. i dispise the use of frames, but then it works rather well for javadoc. I have not seen any plans to change it. Eclipse has some support for javadoc as far as reading, interpreting and generating it goes.

share|improve this answer

Personally I still find Javadoc to be very useful. Especially since it is standardized. I don't know of any major documentation style that I find easier to navigate (that might very well be subjective, but I personally find MSDN horrible to use, for example).

For the search: Use the Javadoc Search Frame, it makes using Javadoc of all kinds a lot easier. It's available as a Userscript for Firefox and as a Google Chrome Extension.

share|improve this answer

You might want to phrase that in a less agressive and overbearing manner. Most people don't care what a technical resource looks like, and "It's not Web 2.0 enough!" sounds like vapid marketroidspeak.

And what exactly would you consider "more usable"? Personally, I would definitely like a full text search and a better useage browser, and AJAX could probable help with those.

Well, the nice thing about JavaDoc is that it's the opposite of outdated - it's arbitrarily extensible. Why don't you go ahead and write a doclet that produces the kind of API doc you want?

Why nobody else has done that so far (which apparently is the case) is anyone's guess - maybe nobody else feels as strongly about it as you.

share|improve this answer
1  
1) It is a fact that people's impression of usability depends on good design. 2) AJAX - for a local file:// resource? 3) I'm sure, nobody in the C/C++ ecosystem feels as strongly about consistent naming as I do, but this does not invalidates the needs for consistent naming. – ivan_ivanovich_ivanoff Jun 22 '09 at 11:20
1) What exactly would you consider "good design" then? I, for one, think that the regular JavaDoc is well-designed. 2) Would not be real AJAX, I suppose, but similar functionality should actually be possible. 3) Still, it looks like the current JavaDoc is good enough for most people that nobody has bothered making a better one so far - which would be not all that difficult. – Michael Borgwardt Jun 22 '09 at 11:30
1  
1) Standard part: strongly structured data, not HTML. Implementation part: a desktop app written in Java ;) 3) I think many volunteers could be found to improve Javadoc, but to make it serious a JSR would be needed. Not realistic to achieve for this topic. – ivan_ivanovich_ivanoff Jun 22 '09 at 11:38
@ivan_ivanovich_ivanoff: What do you think which strongly structured data is needed? And why not writing a javadoc-doclet, that produces this format? And I absolotely oppose the idea of a desktop-app, because it locks you on the specific app to view the documentation. – Mnementh Jun 22 '09 at 11:55

There's a DocBook doclet. DocBook is a richer document type than (X)HTML and is better for describing technical content. From DocBook source you can generate all sorts of different output formats.

share|improve this answer

I personally would like a more readable "comment documentation" standard than the HTML (and hence tag-wieldy) JavaDoc.

For example, MarkDown, as used here, would be excellent, human readable in the source, nicely formatted external to the source.

With the current JavaDoc, I imagine many people use JavaDoc comments, but don't actually document to the extent they could. I'm sure everyone has browsed an API's online JavaDoc that has been non-documented or barely-documented, and thus far harder to use than it should be.

This isn't helped by code-reformatters (e.g., within Eclipse, or maybe upon source commit) that totally destroy any readable structure you might have put within a JavaDoc comment (e.g., a list of items) into one big blob of text, unless you literally use two carriage returns where you wish to use one).

share|improve this answer

Does anyone know, if there some plans to evolve Javadoc, in a somehow-standardized way?

The corresponding JSR (JSR 260), which specifies enhancements to Javadoc, has been voted out of JDK 7 (for now). An overview of what was planned (from this site):

Upgrade Javadoc to provide a richer set of tags to allow more structured presentation of Javadoc documentation. This JSR covers: categorization of methods and fields, semantical index of classes and packages, distinction of static, factory, deprecated methods from ordinary methods, distinction of property accessors, combining and splitting information into views, embedding of examples and common use-cases, and more.

The overall outlook for JDK 7 is pretty grim.

share|improve this answer

A smart seachable javadoc viewer:

For many times, I face the problem of browsing JavaDoc. I was looking for something just like Adnroid doc search option. At last I get something like that. If you use firefox the solution is here.

  1. Install the plugin GreaseMonkey, its kinda customizing web page the way we see. ( We need to customize any java doc page, so we can search on class name) https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/

  2. For greasemonkey to work, we need some user script for customization. This can be downloaded by greasemonkey automatically. Install the userscript from JavaDoc search frame or JavaDoc incremental search.

This works great for me.

share|improve this answer

JavaDoc is itself extremely flexible because you can replace the standard doclet with a custom doclet to provide something that meets your projects specific needs.

On the project I've been working on, we created an HTML/XML-based documentation system (using client-side XSLT 2.0 on JS) for our product with JavaDoc fully integrated. For this, a custom doclet was used to produce JavaDoc data in XML, this used tagsoup to ensure even HTML markup within code comments were well formed.

With this, we were able to deliver an interactive user experience using a single-page app (similar to a desktop tool), but all from within the browser - without any server-side code/infrastructure. The viewer included standard features such as search, tree navigation etc.

Here's a link to a sample entry point in the rather vast documentation: JavaDoc viewer sample

Here's an image also: enter image description here

share|improve this answer

Thanks guys for negating my post! But they say, there is no bad music -- only boring one! So, a good idea: look at the bottom of those pages here and you may find something interesting too (but from the opposite side of conventional "crowd" thinking).

By the way, for those who are not so much happy with the new JavaDoc design, we invite everyone to use our tool DocFlex/Javadoc to generate the old-looking classic JavaDoc!

This will work even under Java 7 or anything else that follows (at least, until they preserve the Doclet API).

Just download the DocFlex/Doclet edition here: http://www.filigris.com/downloads/

It is absolutely free! Using "JavadocPro" template set, you can generate the JavaDoc identical to the classic one (for projects of any size). All standard functionality is supported! You can use even most of the Standard Doclet options (like -doctitle, -header etc.)

It is very stable and extremely elaborated (actually, more than the standard Javadoc -- though you won't believe me).

In fact, you can do a lot more with this tool (see below). But that's for money, sorry...

26-Apr-2012


Let's face it: You don't need to be a designer to see that default Javadoc looks ugly.

Well. So, you wanted a new JavaDoc design? OK, they did it:

http://docs.oracle.com/javase/7/docs/api/index.html

But is it any better (besides looking as something "new")? In my view, not!

  • First, it is more difficult to read (because of the font, wrong or absence of indents, waste of space for various borders and so on)
  • It doesn't add anything new about navigation/information etc.

Yes, it is just a "facelift" and nothing else (and, you know, some facelifts do make people look ugly indeed).

Concerning the pure "design" aspect, I don't think much really can be added to the classic JavaDoc design (those shades of blue and simple text). Well... maybe some 3d elements (bars, button), some icons of course -- but that's all.

If you look at JavaDoc as an information resource (about your Java project), I think, there are limits too:

  • You cannot make it write your programs for you, ha-ha. That will never be possible!
  • You cannot make JavaDoc to be an expert system about your Java project, which would answer any your questions. Because, well, in that case, it will be an expert system, not a documentation! An absolutely different kind of software (with different costs of its development, and therefore, prices and etc.)

In general, I think, the more various special information about your Java project (especially large one) you want to be able to retrieve quickly -- that is actually what we call navigation -- the closer that tool would be to a modern Java IDE. This is again beyond what we call JavaDoc.

The only true improvement, I think, could be adding some diagrams, e.g. UML class diagrams. In that case, the diagrams themselves would convey more information and may greatly improve navigation, of course.

Diagrams would add a new layer to everything. But they are difficult to generate! So, here we have a business problem: first to develop that stuff and then to market/sell it. Make no mistake, it is beyond a realm of some amateur open-source project.

12-Mar-2012


Since long ago we offer a tool called DocFlex/Javadoc (or DocFlex/Doclet, a simplified version of it).

Basically, this is a template-driven Javadoc doclet.

That may sound like nothing remarkable (everything has now some kind of "templates"). But our templates are different. They are actually programs somewhat similar to XSLT. But this is not XSLT either. Our templates are created with a special graphical Template Designer, which tries to represent them in a way resembling the output they will generate (i.e. the WISIWIG of a sort).

The idea of the whole our technology is to represent any Java API as a virtual XML document and process that "document" using techniques borrowed from the field of XML like XPath (or some extension of it). There are many other innovations. More details you can find here: http://www.filigris.com/products/docflex/

You can use DocFlex/Javadoc to program your own doclets. It is not limited to any specific pattern. Any kind of documentation design, look & feel can be programmed to generate with it. We support currently two major output formats HTML (both framed and single file) and RTF, plus the plain text output.

DocFlex/Javadoc is supplied with a default template set that produces JavaDoc similar to the standard one. Very soon we are releasing a new version of it that will generate the output documentation absolutely identical to the standard Javadoc (with the same navigation bar, menu items etc).

One plus of our template-driven implementation is that unlike standard Javadoc, it allows you to include/exclude classes and member marked with specific tags or annotations. At that the generated JavaDoc will be consistent after that. That a rather by-product feature was quite simple to implement basing on the already existed general functionality. Surprisingly, it happened to be very much in demand (more than the whole thing itself).

The entire our technology, in fact, is not limited to Javadoc. The main direction is currently about XML (see DocFlex/XML: http://www.filigris.com/products/docflex_xml/). For instance, we offer now a very powerful XML Schema Documentation Generator (see http://www.filigris.com/products/docflex_xml/xsddoc/, probably the most sophisticated in the world. A similar documentation generator for WSDL is also in the pipeline.

DocFlex/Javadoc is somewhat a by-product of all this, albeit the most beautiful one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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