Java Beans and the New Event Model
----------------------------------

Here is some sample source code demonstrating how to define and
use events using the new Java Beans event model.  The files of particular
interest are:

MyComponent.java -- Defines the ClickListener interface and the ClickEvent
                    class.  
		    
PushButton.java -- Subclasses the AWT Button class to redirect the
                   action event to the new Click event.
		   
MyDialog.java, MyDialog2.java, MyDialog3.java -- Shows the different 
                                                 ways you can hook up to
						 events. 
						 
The MyDialog, MyDialog2 and MyDialog3 examples can be run directly from
the commandline.
 
