|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--waba.sys.Time
Time identifies a date and time.
Here is an example of Time being used to display the current date:
Time t = new Time(); ... g.drawText("Today is " + t.year + "/" + t.month + "/" + t.day);
Field Summary | |
int |
day
The day in the range of 1 to the last day in the month. |
int |
hour
The hour in the range of 0 to 23. |
int |
millis
Milliseconds in the range of 0 to 999. |
int |
minute
The minute in the range of 0 to 59. |
int |
month
The month in the range of 1 to 12. |
int |
second
The second in the range of 0 to 59. |
int |
year
The year as its full set of digits (year 2010 is 2010). |
Constructor Summary | |
Time()
Constructs a time object set to the current date and time. |
Methods inherited from class java.lang.Object |
hashCode,
toString |
Field Detail |
public int year
public int month
public int day
public int hour
public int minute
public int second
public int millis
Constructor Detail |
public Time()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |