TimeConvert.java
public class TimeConvert
{
/**
Converts military time to ordinary time.
@param milTime, the military time provided: hhmm
@return a string of the form 9:35 am or 7 pm
*/
public static String militaryToOrdinaryTime(int milTime)
{
...
}
}