01: /*
02: * Tester2Listener.java --
03: *
04: * This is an event listener interface that test various capability
05: * of the AdaptorGen class.
06: *
07: * Copyright (c) 1997 Sun Microsystems, Inc.
08: *
09: * See the file "license.terms" for information on usage and
10: * redistribution of this file, and for a DISCLAIMER OF ALL
11: * WARRANTIES.
12: *
13: * RCS: @(#) $Id: Tester2Listener.java,v 1.1 1999/05/10 04:09:00 dejong Exp $
14: */
15:
16: package tcl.lang;
17:
18: import java.util.*;
19:
20: /*
21: * This is an event listener interface that test various capability of
22: * the AdaptorGen class. AdaptorGen should be able to handle an
23: * interface whose methods may take any arguments, return any type of
24: * value and throw arbitrart exceptions.
25: */
26:
27: public interface Tester2Listener extends EventListener {
28:
29: /*
30: * A very conventional event method.
31: */
32:
33: public void method0(Tester2Event eventObj);
34:
35: } // end Tester2Listener
|