caltool.schedule
Class Date

java.lang.Object
  extended by caltool.schedule.Date

public class Date
extends java.lang.Object

Class Date is the basic unit of calendar time keeping, consisting of a day of the week, numeric date, month, and year.

Version:
14jan11
Author:
Gene Fisher (gfisher@calpoly.edu)

Field Summary
(package private)  DayName day
          One of the seven standard days of the week
(package private)  MonthName month
          One of the twelve months of the year
(package private)  int number
          Numeric date in a month, between 1 and 31
(package private)  int year
          The four-digit year number.
 
Constructor Summary
Date()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

day

DayName day
One of the seven standard days of the week


number

int number
Numeric date in a month, between 1 and 31


month

MonthName month
One of the twelve months of the year


year

int year
The four-digit year number. (Yes, this Calendar Tool has a Y10K problem.)

Constructor Detail

Date

public Date()