vote up 0 vote down star

i know that we can create documentation from java source files. but how to do it?. thanks in advance.

flag

5 Answers

vote up 9 vote down

Gowth, reade the javadoc docs:

javadoc - The Java API Documentation Generator

Generates HTML pages of API documentation from Java source files. This document contains JavadocTM examples for Microsoft Windows.

http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html

link|flag
vote up 4 vote down

The javadoc command is used to turn Javadoc-style comments into HTML pages. Sun also provides a tutorial on how to write doc comments for the Javadoc tool.

There are also other tools, such as Doxygen, that perform similar tasks.

link|flag
vote up 3 vote down

It pretty much boils down to this: specially formatted comments and an application called javadoc. Note that you will need a Java Development Kit (JDK) installed; JRE won't suffice.

Say you want to generate Javadoc for a function setScheduling(). You would format the code as follows:

/**
 * Internal function that signals the current thread to be in a scheduling
 * state. In this state, it cannot be interrupted.
 * 
 * @param scheduling
 */
private void setScheduling(boolean scheduling) {
    this.scheduling = scheduling;
}

Note the two stars to begin the comment, indicating it is JavaDoc: /**

I highly recommend developing Java in an established IDE such as Eclipse or NetBeans. It will make generating JavaDocs as easy as hitting Project, Generate Javadoc.

link|flag
Any IDE with decent Java support will make generating Javadocs easy. In NetBeans, you can select Run > Generate Javadoc to do the same thing. – Thomas Owens Sep 28 at 17:15
Yes, you are entirely correct. It wasn't my intention to pick one IDE over another, but I understand it reads that way. – Paul Lammertsma Sep 28 at 17:22
True. I was just adding how you can generate Javadoc in my IDE of choice. In fact, that's one of the things I look for in a Java IDE - if I can't generate Javadoc, why should I use it? – Thomas Owens Sep 28 at 17:27
vote up 0 vote down

As a standalone tool(apart from IDE support) you can look at Java2HTML, quite simple and straightforward for operating outside the IDE.

link|flag
vote up -2 vote down

@gowth08, There's a minimum research to do before asking questions, it is quite rude. Few seconds to minutes on google would have given you the answer.

link|flag
This is not an answer to the question. – Thomas Owens Sep 28 at 17:14
Fine, I don't mind the minus anyway, my point is there's a minimum effort to put before asking questions, I hope that you got that part. – lazy Sep 28 at 17:34
Lazy, indeed a google search would reveal the javadoc to him, still, that's not the answer, you could comment out his question. – Kamia Sep 29 at 18:44
Anyway :-), make it minus infinite, I still wouldn't care, Thomas is a young fat idiot. – lazy Sep 30 at 0:33

Your Answer

Get an OpenID
or

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