Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR 217 (Maintenance Release)

java.awt.event
Interface TextListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
AWTEventMulticaster

public interface TextListener
extends EventListener

The listener interface for receiving text events. The class that is interested in processing a text event implements this interface. The object created with that class is then registered with a component using the component's addTextListener method. When the component's text changes, the listener object's textValueChanged method is invoked.

Since:
1.1
See Also:
TextEvent, Tutorial: Writing a Text Listener, Reference: The Java Class Libraries (update file)

Method Summary
 void textValueChanged(TextEvent e)
          Invoked when the value of the text has changed.
 

Method Detail

textValueChanged

public void textValueChanged(TextEvent e)
Invoked when the value of the text has changed. The code written for this method performs the operations that need to occur when text changes.


JSR 217 (Maintenance Release)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 217 specification.