Liking cljdoc? Tell your friends :D

jdk.awt.event.TextEvent

A semantic event which indicates that an object's text changed. This high-level event is generated by an object (such as a TextComponent) when its text changes. The event is passed to every TextListener object which registered to receive such events using the component's addTextListener method.

The object that implements the TextListener interface gets this TextEvent when the event occurs. The listener is spared the details of processing individual mouse movements and key strokes Instead, it can process a "meaningful" (semantic) event like "text changed".

An unspecified behavior will be caused if the id parameter of any particular TextEvent instance is not in the range from TEXT_FIRST to TEXT_LAST.

A semantic event which indicates that an object's text changed.
This high-level event is generated by an object (such as a TextComponent)
when its text changes. The event is passed to
every TextListener object which registered to receive such
events using the component's addTextListener method.

The object that implements the TextListener interface gets
this TextEvent when the event occurs. The listener is
spared the details of processing individual mouse movements and key strokes
Instead, it can process a "meaningful" (semantic) event like "text changed".

An unspecified behavior will be caused if the id parameter
of any particular TextEvent instance is not
in the range from TEXT_FIRST to TEXT_LAST.
raw docstring

*-text-firstclj

Static Constant.

The first number in the range of ids used for text events.

type: int

Static Constant.

The first number in the range of ids used for text events.

type: int
raw docstring

*-text-lastclj

Static Constant.

The last number in the range of ids used for text events.

type: int

Static Constant.

The last number in the range of ids used for text events.

type: int
raw docstring

*-text-value-changedclj

Static Constant.

This event id indicates that object's text changed.

type: int

Static Constant.

This event id indicates that object's text changed.

type: int
raw docstring

->text-eventclj

(->text-event source id)

Constructor.

Constructs a TextEvent object. This method throws an IllegalArgumentException if source is null.

source - The (TextComponent) object that originated the event - java.lang.Object id - An integer that identifies the event type. For information on allowable values, see the class description for TextEvent - int

throws: java.lang.IllegalArgumentException - if source is null

Constructor.

Constructs a TextEvent object.
  This method throws an
 IllegalArgumentException if source
 is null.

source - The (TextComponent) object that originated the event - `java.lang.Object`
id - An integer that identifies the event type. For information on allowable values, see the class description for TextEvent - `int`

throws: java.lang.IllegalArgumentException - if source is null
raw docstring

param-stringclj

(param-string this)

Returns a parameter string identifying this text event. This method is useful for event-logging and for debugging.

returns: a string identifying the event and its attributes - java.lang.String

Returns a parameter string identifying this text event.
 This method is useful for event-logging and for debugging.

returns: a string identifying the event and its attributes - `java.lang.String`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close