Package | Description |
---|---|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.input |
Provides the set of classes for mouse and keyboard input event handling.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<? super InputMethodEvent> |
Node.getOnInputMethodTextChanged()
Gets the value of the property onInputMethodTextChanged.
|
EventHandler<? super InputMethodEvent> |
Scene.getOnInputMethodTextChanged()
Gets the value of the property onInputMethodTextChanged.
|
ObjectProperty<EventHandler<? super InputMethodEvent>> |
Node.onInputMethodTextChangedProperty()
Defines a function to be called when this
Node
has input focus and the input method text has changed. |
ObjectProperty<EventHandler<? super InputMethodEvent>> |
Scene.onInputMethodTextChangedProperty()
Defines a function to be called when this
Node
has input focus and the input method text has changed. |
Modifier and Type | Method and Description |
---|---|
void |
Node.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value)
Sets the value of the property onInputMethodTextChanged.
|
void |
Scene.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value)
Sets the value of the property onInputMethodTextChanged.
|
Modifier and Type | Field and Description |
---|---|
static EventType<InputMethodEvent> |
InputMethodEvent.ANY
Common supertype for all input method event types.
|
static EventType<InputMethodEvent> |
InputMethodEvent.INPUT_METHOD_TEXT_CHANGED
The only valid EventType for the InputMethodEvent.
|
Modifier and Type | Method and Description |
---|---|
InputMethodEvent |
InputMethodEvent.copyFor(Object newSource,
EventTarget newTarget) |
Modifier and Type | Method and Description |
---|---|
EventType<InputMethodEvent> |
InputMethodEvent.getEventType() |
Constructor and Description |
---|
InputMethodEvent(EventType<InputMethodEvent> eventType,
List<InputMethodTextRun> composed,
String committed,
int caretPosition)
Constructs new InputMethodEvent event with empty source and target.
|
InputMethodEvent(Object source,
EventTarget target,
EventType<InputMethodEvent> eventType,
List<InputMethodTextRun> composed,
String committed,
int caretPosition)
Constructs new InputMethodEvent event.
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.