// object.Documentation1.java // TIJ4 Chapter Object, Exercise 13 - 3 /* Run Documentation1.java, Documentation2.java and Documentation3.java * through Javadoc. Verify the resulting documentation with your Web browser. */ import java.util.*; // object/Documentation3.java /** * You can even insert a list: *
    *
  1. Item one *
  2. Item two *
  3. Item three *
*/ public class Documentation3 { public static void main(String[] args) { Date d = new Date(); System.out.println("d = " + d); } }