FileDocCategorySizeDatePackage
SimpleEvent.javaAPI DocExample487Tue Jun 03 21:57:04 BST 1997None

SimpleEvent.java

// This example is from the book Developing Java Beans by Robert Englander. 
// Copyright (c) 1997 O'Reilly & Associates.
// You may study, use, modify, and distribute this example for any purpose.
// This example is provided WITHOUT WARRANTY either expressed or implied.

// Chapter 2 -- The SimpleEvent class

public class SimpleEvent extends java.util.EventObject  
{
   // construct the simple event type
   SimpleEvent(Object source)
   {
      super(source);
   }
}