/**
  * Object used to hold data conveniently for passing between DialClockFrame
  * and TimeCalc.  No field protection is used, so new TimeGrid objects should
  * be created as needed to avoid unintentional alterations.
  */
public class TimeGrid {
	public double
		cSecInMin,
		tSecInMin,
		cMinInMin,
		tMinInMin,
		cSecInHr,
		tSecInHr,
		cMinInHr,
		tMinInHr,
		cHrInHr,
		tHrInHr,
		cSecInDay,
		tSecInDay,
		cMinInDay,
		tMinInDay,
		cHrInDay,
		tHrInDay,
		cDayInDay,
		tDayInDay;
}
