Programming Resources
For Fun and Learning
Charles Cusack
Computer Science
Hope College
main

Python
C++
JAVA
PHP
SQL

Assignments


Clock


ClockEvent.java

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);
    }
}