Info
Class Time

java.lang.Object
  extended by Info.Time

public abstract class Time
extends java.lang.Object

Time object has an hour, minute, and a AM/PM indicator.


Field Summary
 AMorPM amORpm
          Whether the time is AM or PM.
 int hour
          The hour of the time.
 int minute
          The minutes of the time.
 
Constructor Summary
Time()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hour

public int hour
The hour of the time.


minute

public int minute
The minutes of the time.


amORpm

public AMorPM amORpm
Whether the time is AM or PM.

Constructor Detail

Time

public Time()