Here are some links & help for starting out.
strauss and mahler) in /usr/jdk1.3/.
You could also download the JDK from Sun (it is free). Try
java.sun.com or
http://java.sun.com/j2se/1.3/
for your platform (Sun, Linux or Windows).
Linux users can also try
www.blackdown.org
for the latest linux ports.
Also note that you will need the Java Plugin (from the sites above) if you
want to see your applets on your own computer's web browser.
import ...
//comment for main program after import statements
/**
* @author Cool Programming Dude
* @version 1.0
*
* A simple program
*/
...
//class....
public class Helper
{
/**
* @param String hello, String goodbye
*
* A simple method
*/
//now a method
public void printMe(String hello, String goodbye)
{
...
} //end method
} //end class
Such comments will show up in your html pages produced by the javadoc program.
Javadoc is found in the same bin directory as java, javac, etc... Try
% javadoc -helpto see a list of parameters for running the program. Here is what you need to do with your source:
% javadoc -author -version Sourcecode.java(-version and -author forces javadoc to include the author and version tags)
//.... public void print() //... public void displayMe() //... public void displayInMyPage()