Class SimpleDate
java.lang.Object
|
+----SimpleDate
- public class SimpleDate
- extends Object
A very simple implementation of dates using Gregorian-style
calendars (with year, month, and day).
Variable Index
- o
day
- The day in the month.
- o
month
- The month.
- o
year
-
The year.
Constructor Index
- o
SimpleDate(int, int, int)
- Build a new date with year, month, and day.
Method Index
- o
getDay()
- Get the day.
- o
getMonth()
- Get the month.
- o
getYear()
- Get the year.
- o
toString()
- Convert to a string (American format: MM/DD/YYYY)