package org.noritan.randomword;

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

import java.util.EventListener;

/**
 * Objects implements this interface receives
 * the RandomWordGenerationEvent
 *
 * @author noritan
 * @version 1.0
 */
public interface RandomWordGenerationListener
  extends EventListener
{
  /**
   * Notify that the random words are prepared.
   *
   * @param event specify the detail of the notification.
   */
  public void generated(RandomWordGenerationEvent event);
}