01: /*
02: * NoEventBean --
03: *
04: * A Bean that has no events. Used to test the java::bind command.
05: *
06: * Copyright (c) 1997 Sun Microsystems, Inc.
07: *
08: * See the file "license.terms" for information on usage and
09: * redistribution of this file, and for a DISCLAIMER OF ALL
10: * WARRANTIES.
11: *
12: * RCS: @(#) $Id: NoEventBean.java,v 1.1 1999/05/10 04:08:59 dejong Exp $
13: */
14:
15: package tcl.lang;
16:
17: import java.util.*;
18:
19: public class NoEventBean {
20:
21: public NoEventBean() {
22: }
23:
24: } // end TesterBean
|