Class CCDControlListener

java.lang.Object
  |
  +--CCDControlListener

public class CCDControlListener
extends java.lang.Object
implements java.awt.event.ActionListener, java.awt.event.ItemListener


Field Summary
(package private)  DspCommand2 dsp_cmd
           
(package private)  VoodooMainWindow parent
           
 
Constructor Summary
CCDControlListener(VoodooMainWindow parent)
          Default constructor.
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent e)
          This method overides the same one in the ActionListener interface.
 void itemStateChanged(java.awt.event.ItemEvent ie)
          This method listens for array control events from parent.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

parent

VoodooMainWindow parent

dsp_cmd

DspCommand2 dsp_cmd
Constructor Detail

CCDControlListener

public CCDControlListener(VoodooMainWindow parent)
Default constructor.
Parameters:
parent - The window this event listener listens to.
Method Detail

itemStateChanged

public void itemStateChanged(java.awt.event.ItemEvent ie)
This method listens for array control events from parent.
Specified by:
itemStateChanged in interface java.awt.event.ItemListener
Parameters:
ie - The event info.
See Also:
ItemListener

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