import java.util.*;
/**
* An event that simply indicates something has
* happened with a clock.
*
* @author Charles Cusack
* @version August, 2008
*/
public class ClockEvent extends EventObject
{
/**
* Constructs a ClockEvent object with the given source.
*
* @param source the object that originated the event
*/
public ClockEvent(Object source)
{
super(source);
}
}