FileDocCategorySizeDatePackage
ServiceRequestEvent.javaAPI DocExample947Tue Jun 03 23:55:48 BST 1997BeansBook.Simulator

ServiceRequestEvent

public class ServiceRequestEvent extends EventObject

Fields Summary
protected boolean
bStart
Constructors Summary
public ServiceRequestEvent(Object source, boolean start)

      // call the superclass constructor
      super(source);
      
      // save the value of the start flag
      bStart = start;
   
Methods Summary
public booleanisStart()

      // return the start value
      return bStart;