Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.awt.event.TextEvent

java.lang.Object
   |
   +----java.util.EventObject
           |
           +----java.awt.AWTEvent
                   |
                   +----java.awt.event.TextEvent

public class TextEvent
extends AWTEvent

The text event emitted by TextComponents.

See Also:
TextComponent, TextEventListener

Variable Index

TEXT_FIRST
Marks the first integer id for the range of adjustment event ids.
TEXT_LAST
Marks the last integer id for the range of adjustment event ids.
TEXT_VALUE_CHANGED
The adjustment value changed event.

Constructor Index

TextEvent(Object, int)
Constructs a TextEvent object with the specified TextComponent source, and type.

Method Index

paramString()

Variables

TEXT_FIRST
 public static final int TEXT_FIRST
Marks the first integer id for the range of adjustment event ids.

TEXT_LAST
 public static final int TEXT_LAST
Marks the last integer id for the range of adjustment event ids.

TEXT_VALUE_CHANGED
 public static final int TEXT_VALUE_CHANGED
The adjustment value changed event.


Constructors

TextEvent
 public TextEvent(Object source,
                  int id)
Constructs a TextEvent object with the specified TextComponent source, and type.

Parameters:
source - the TextComponent where the event originated

Methods

paramString
 public String paramString()
Overrides:
paramString in class AWTEvent

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)