Index
BensEventListener.java


/*
 *  "COM.bensoft.base" Copyright (C) by Michael Benson - 7/27/97
 *
 *  "BensEventListener" is an interface that all listeners must extend.
 */

package COM.bensoft.base;

import java.awt.*;
import java.util.*;
import java.io.*;


/**
 * An interface that all event listener interfaces must extend.
 * This is provided for compatibility between JDK 1.1 and JDK 1.0.2
 * and is based on the interface from Sun/JavaSoft.
 */
public interface BensEventListener {

}