TextListenerNameTextListener
DescriptionObjects that implement the TextListener interface can receive TextEvent objects. Listeners must first register themselves with objects that produce events. When events occur, they are then automatically propagated to all registered listeners. Interface Definition
public abstract interface java.awt.event.TextListener extends java.util.EventListener { // Interface Methods public abstract void textValueChanged (TextEvent e); } Interface MethodstextValueChangedpublic abstract void textValueChanged (TextEvent e)
See AlsoAWTEventMulticaster, EventListener, TextEvent |
|