// object/Documentation4.java // TIJ4 Chapter Object, Exercise 14, page 90 // Add an HTML list of items to the documentation in the previous exercise. import java.util.*; // object/Documentation4.java /** * You can even insert a list: *
    *
  1. Item one *
  2. Item two *
  3. Item three *
* Another test list *
    *
  1. One *
  2. Two *
  3. Three *
*/ public class Documentation4 { /** Let's try a public field list *
    *
  1. One *
  2. Two *
  3. Three *
*/ public int i = 2; /** * A private field list (-private to see) *
    *
  1. One *
  2. Two *
  3. Three *
*/ private int j = 3; /** * Another list can be inserted here to help explain the * following method call *
    *
  1. One *
  2. Two *
  3. Three *

* but may be formatted differently in Method Summary */ public static void main(String[] args) { /** * Let's try another test list here *
    *
  1. One *
  2. Two *
  3. Three *
*/ Date d = new Date(); System.out.println("d = " + d); } }