Class UITextEvent
public class UITextEvent extends UIEvent
{
// Fields
public static final int TEXT_VALUE_CHANGED;
// Constructors
public UITextEvent(IUIComponent source, int id);
// Methods
public String paramString();
}
This class represents a text event. Text events are generated by the text components when their values change.
EventObject
|
+--UIBaseEvent
|
+--UIEvent
|
+--UITextEvent
public UITextEvent(IUIComponent source, int id);
Constructs a TextEvent object with the specified source and type.
Parameter | Description |
source
| The IUIComponent where the event originated.
|
id
| The event type.
|
public String paramString();
This method is used internally by the toString method.
Return Value:
Returns a formatted String object that assists with textual representation of the exception.
- TEXT_VALUE_CHANGED
- The text value changed event.