package org.noritan.randomword;

/**
 * Title: Random Word Generator
 * File: RandomWordGenerationEvent.java
 * Copyright: Copyright (c) 2005 noritan
 * Organization: noritan.org
 */

import java.util.EventObject;

/**
 * This object is used to notify the event that the random words are
 * prepared.
 *
 * @author noritan
 * @version 1.0
 * @see RandomWordGenerationListener
 */
public class RandomWordGenerationEvent
  extends EventObject
{
  /**
   * Construct an event object.
   *
   * @param source source object which this object is issued from.
   */
  public RandomWordGenerationEvent(Object source) {
    super(source);
  }
}