/** * A few methods to help with manipulating dates. * * @author Samuel A. Rebelsky * @version 1.0 of January 1999 */ public class DateHelper { // +---------+-------------------------------------------------- // | Methods | // +---------+ /** * Print a range of dates. */ public void printRange(SimpleOutput out, SimpleDate first, SimpleDate second) { out.println("From " + first.toString() + " to " + second.toString()); } // printRange(SimpleOutput,SimpleDate,SimpleDate) } // class DateHelper