Dear Friend,
You cannnot get documentation for a class file. You can get it only fro source file.
that is
javadoc
this is not a specific tool that get installed along with the java software.
just check it out it will be in the bin directory of java installation directory.
HI
Document
Download : you could just download from sun -> java.sun.com\j2se\download\
Go to download api.
Program:If you want to create document from your program
1) First Add /** */ comments to your java program
2) call javadoc with that source *.java file
Tool: Goto java help tool from sun to create dynamic web enabled help. It is available in the form of
API. Just download and develop it.(Used in J2EE application).
For all we need java jdk or jre must be installed.
Hi,
If the class is a part of Java SDK then you can find it in documentation provided by Sun.
If it is a third party class file and if you have source file then you can generate docs using javadoc.
If you have only class file and you want to know what are the available fields and methods then use javap.
Prabhu.