1) How do I tell if I have java 5 or java 6 installed?
2) I have my program commented using javadoc syntax. However, when I run javadoc from the command prompt and then open the html files, I do not see any documentation. What am I doing wrong?
For instance, my comments look like this in the source file:
/**
* Determines if two APoint objects are equivalent
* @param b the APoint object being compared with 'this'
* @return a boolean value which determines if two points are equal
*/
I type in the following into the command-line prompt: javadoc filename.java
Then I don't see anything in the html files???