Package | Description |
---|---|
com.sun.javafx.embed | |
com.sun.javafx.tk | |
com.sun.javafx.tk.quantum | |
javafx.embed.swing |
Provides the set of classes to use JavaFX inside Swing applications.
|
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 |
---|---|
void |
EmbeddedSceneInterface.inputMethodEvent(EventType<InputMethodEvent> type,
ObservableList<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition) |
Modifier and Type | Method and Description |
---|---|
void |
TKSceneListener.inputMethodEvent(EventType<InputMethodEvent> type,
ObservableList<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition)
Pass an input method event to the scene to handle
|
Modifier and Type | Method and Description |
---|---|
private static ObservableList<InputMethodTextRun> |
GlassViewEventHandler.inputMethodEventComposed(java.lang.String text,
int commitCount,
int[] clauseBoundary,
int[] attrBoundary,
byte[] attrValue) |
Modifier and Type | Method and Description |
---|---|
void |
EmbeddedScene.inputMethodEvent(EventType<InputMethodEvent> type,
ObservableList<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition) |
Modifier and Type | Method and Description |
---|---|
static ObservableList<InputMethodTextRun> |
InputMethodSupport.inputMethodEventComposed(java.lang.String text,
int commitCount) |
Modifier and Type | Method and Description |
---|---|
void |
Scene.ScenePeerListener.inputMethodEvent(EventType<InputMethodEvent> type,
ObservableList<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition) |
Modifier and Type | Field and Description |
---|---|
private ObservableList<InputMethodTextRun> |
InputMethodEvent.composed
The text under composition.
|
Modifier and Type | Method and Description |
---|---|
ObservableList<InputMethodTextRun> |
InputMethodEvent.getComposed()
Gets the text under composition.
|
Constructor and Description |
---|
InputMethodEvent(EventType<InputMethodEvent> eventType,
java.util.List<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition)
Constructs new InputMethodEvent event with empty source and target.
|
InputMethodEvent(java.lang.Object source,
EventTarget target,
EventType<InputMethodEvent> eventType,
java.util.List<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition)
Constructs new InputMethodEvent event.
|