org.netbeans.spi.wizard
Class WizardPage.CustomComponentNotifier

java.lang.Object
  extended by org.netbeans.spi.wizard.WizardPage.CustomComponentNotifier
Enclosing class:
WizardPage

public abstract static class WizardPage.CustomComponentNotifier
extends java.lang.Object

Object which is passed to CustomComponentListener.startListeningTo(), which can be called when an event has occurred on a custom component the CustomComponentListener has claimed (by returning true from its accept() method).


Method Summary
Modifier and Type Method and Description
abstract  void userInputReceived(java.awt.Component c, java.lang.Object eventObject)
          Method which may be called when an event occurred on a custom component.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

userInputReceived

public abstract void userInputReceived(java.awt.Component c,
                                       java.lang.Object eventObject)
Method which may be called when an event occurred on a custom component.

Parameters:
c - the component
eventObject - the event object from the component, or null (with the exception of javax.swing.text.DocumentEvent, it will likely be a subclass of java.util.EventObject).