Exercise 13: Run Documentation1.java, Documentation2.java, and Documentation3.java through Javadoc. Verify the resulting documentation with your Web browser.
Solution:
/** A class comment */
public class Documentation1
{
/** A field comment */
public int i;
/** A method comment */
public void f()
{
}
}
public class Documentation1
{
/** A field comment */
public int i;
/** A method comment */
public void f()
{
}
}
Output: