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