01: /*
02: * Tester2Event.java --
03: *
04: * This is an event object that tests the java::bind and java::event
05: * commands.
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: Tester2Event.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: public class Tester2Event extends EventObject {
21:
22: public Tester2Event(Object source) {
23: super (source);
24: }
25:
26: } // end Tester2Event
|