org.salespointframework.core.events
Class FormSheetAdapter

java.lang.Object
  extended by org.salespointframework.core.events.FormSheetAdapter
All Implemented Interfaces:
java.util.EventListener, FormSheetListener

public abstract class FormSheetAdapter
extends java.lang.Object
implements FormSheetListener, java.util.EventListener

Convenience adapter for the FormSheetListener interface. All the methods in the interface are implemented, but they are implemented with empty method bodies. So you can create subclasses where you only override the methods in which you are interested.

Since:
v2.0
Version:
2.0 27/05/1999
Author:
Steffen Zschaler

Constructor Summary
FormSheetAdapter()
           
 
Method Summary
 void formSheetRemoved(FormSheetEvent e)
          Event triggered whenever a FormSheet was removed from the Display.
 void formSheetSet(FormSheetEvent e)
          Event triggered whenever a new FormSheet was set on the Display.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FormSheetAdapter

public FormSheetAdapter()
Method Detail

formSheetSet

public void formSheetSet(FormSheetEvent e)
Event triggered whenever a new FormSheet was set on the Display.

Specified by:
formSheetSet in interface FormSheetListener
Parameters:
e - the event object.

formSheetRemoved

public void formSheetRemoved(FormSheetEvent e)
Event triggered whenever a FormSheet was removed from the Display.

Specified by:
formSheetRemoved in interface FormSheetListener
Parameters:
e - the event object.