/*
 * AntEvent.java
 *
 * Created on 28 November 2006, 13:39
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package ants.event;

import java.util.EventObject;

/**
 *
 * @author James Hamilton
 */
public class AntEvent extends EventObject {
    
    /** Creates a new instance of AntEvent */
    public AntEvent(Object source) {
        super(source);
    }
    
}

