/**
 * A simple encapsulation of an Event in an event 
 * listener system
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public class ListenerEvent extends Event<EventGenerator>
{
    /**
     * Explicit Value Constructor
     *
     * @param source   The source of this Event
     * @param name     The name of this Event
     * @param value    The value of this Event
     */
    public ListenerEvent(EventGenerator source, 
                         String name, 
                         String value)
    {
       super(source, name, value);
    }
}
