// 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:
*
* - Item one
*
- Item two
*
- Item three
*
* Another test list
*
* - One
*
- Two
*
- Three
*
*/
public class Documentation4 {
/** Let's try a public field list
*
* - One
*
- Two
*
- Three
*
*/
public int i = 2;
/**
* A private field list (-private to see)
*
* - One
*
- Two
*
- Three
*
*/
private int j = 3;
/**
* Another list can be inserted here to help explain the
* following method call
*
* - One
*
- Two
*
- Three
*
* but may be formatted differently in Method Summary
*/
public static void main(String[] args) {
/**
* Let's try another test list here
*
* - One
*
- Two
*
- Three
*
*/
Date d = new Date();
System.out.println("d = " + d);
}
}