// 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 8 -- The HeatingRequestListener interface
package BeansBook.Simulator;
// the interface definition for heating request listeners
public interface HeatingRequestListener
extends java.util.EventListener
{
// the heating request event handler
public void heatingRequest(ServiceRequestEvent evt);
}
|