To load this file without formatting, visit http://whoyouknow.co.uk/ants/java/17.1/src/ants/event/AntEvent.java. This is a spam-protection measure; sorry for the inconvenience.

· AntEvent.java ·

   1/*
   2 * AntEvent.java
   3 *
   4 * Created on 28 November 2006, 13:39
   5 *
   6 * To change this template, choose Tools | Template Manager
   7 * and open the template in the editor.
   8 */
   9
  10package ants.event;
  11
  12import java.util.EventObject;
  13
  14/**
  15 *
  16 * @author James Hamilton
  17 */
  18public class AntEvent extends EventObject {
  19    
  20    /** Creates a new instance of AntEvent */
  21    public AntEvent(Object source) {
  22        super(source);
  23    }
  24    
  25}
  26

· AntEvent.java ends ·

Generated by CHIP: Code Highlighting in PHP, version 2.7.0.