TextEventNameTextEvent
DescriptionText events are generated by text components when their contents change, either programmatically or by a user typing. Class Definition
public class java.awt.event.TextEvent extends java.awt.AWTEvent { // Constants public final static int TEXT_FIRST; public final static int TEXT_LAST; public final static int TEXT_VALUE_CHANGED; // Constructors public TextEvent (Object source, int id); // Instance Methods public String paramString(); } ConstantsTEXT_FIRSTpublic final static int TEXT_FIRSTSpecifies the beginning range of text event ID values. TEXT_LASTpublic final static int TEXT_LASTSpecifies the ending range of text event ID values. TEXT_VALUE_CHANGEDpublic final static int TEXT_VALUE_CHANGEDThe only text event type; it indicates that the contents of something have changed. ConstructorsTextEventpublic TextEvent (Object source, int id)
Instance MethodsparamStringpublic String paramString()
See AlsoAWTEvent, TextListener |
|