Class HelpDialogListener

java.lang.Object
  |
  +--HelpDialogListener

public class HelpDialogListener
extends java.lang.Object
implements java.awt.event.ActionListener


Field Summary
private  java.lang.String message
           
private  HelpDialog parent
           
 
Constructor Summary
HelpDialogListener(java.lang.Object parent)
          Constructor.
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent e)
          This method overides the same one in the ActionListener interface.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

parent

private HelpDialog parent

message

private java.lang.String message
Constructor Detail

HelpDialogListener

public HelpDialogListener(java.lang.Object parent)
Constructor.
Parameters:
parent - The window for which this class listens.
See Also:
FitsDialog
Method Detail

actionPerformed

public void actionPerformed(java.awt.event.ActionEvent e)
This method overides the same one in the ActionListener interface. All events for the parent window are handled here.
Specified by:
actionPerformed in interface java.awt.event.ActionListener
Parameters:
e - The event description.
See Also:
ActionListener