EchoPoint
1.0

echopoint.event
Class DialogAdapter

java.lang.Object
  extended byechopoint.event.DialogAdapter
All Implemented Interfaces:
DialogListener, java.util.EventListener, java.io.Serializable

public class DialogAdapter
extends java.lang.Object
implements java.io.Serializable, DialogListener

An adapter class that implements all methods of the DialogListener interface with empty methods.

See Also:
DialogPanel, DialogEvent, DialogListener, Serialized Form

Constructor Summary
DialogAdapter()
           
 
Method Summary
 void dialogClosed(DialogEvent e)
          An empty implementation of the required DialogListener method.
 void dialogClosing(DialogEvent e)
          An empty implementation of the required DialogListener method.
 void dialogOpened(DialogEvent e)
          An empty implementation of the required DialogListener method.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DialogAdapter

public DialogAdapter()
Method Detail

dialogClosed

public void dialogClosed(DialogEvent e)
An empty implementation of the required DialogListener method.

Specified by:
dialogClosed in interface DialogListener
Parameters:
e - A DialogEvent event describing the action.
See Also:
DialogListener.dialogClosed(DialogEvent)

dialogClosing

public void dialogClosing(DialogEvent e)
An empty implementation of the required DialogListener method.

Specified by:
dialogClosing in interface DialogListener
Parameters:
e - A DialogEvent event describing the action.
See Also:
DialogListener.dialogClosing(DialogEvent)

dialogOpened

public void dialogOpened(DialogEvent e)
An empty implementation of the required DialogListener method.

Specified by:
dialogOpened in interface DialogListener
Parameters:
e - A DialogEvent event describing the action.
See Also:
DialogListener.dialogOpened(DialogEvent)

EchoPoint
1.0