Interface InputMethodListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
AWTEventMulticaster
public interface InputMethodListener
extends EventListener

The listener interface for receiving input method events. A text editing component has to install an input method event listener in order to work with input methods.

The text editing component also has to provide an instance of InputMethodRequests.

Since:
1.2
See Also:
InputMethodEvent, InputMethodRequests

Methods

Modifier and Type Method Description
void caretPositionChanged​(InputMethodEvent event)

Invoked when the caret within composed text has changed.

void inputMethodTextChanged​(InputMethodEvent event)

Invoked when the text entered through an input method has changed.

Methods

inputMethodTextChanged

void inputMethodTextChanged(InputMethodEvent event)

Invoked when the text entered through an input method has changed.

Parameters:
event - the event to be processed

caretPositionChanged

void caretPositionChanged(InputMethodEvent event)

Invoked when the caret within composed text has changed.

Parameters:
event - the event to be processed

© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/InputMethodListener.html