Set window text input client used for complex text input and IME support. @param client text input client @return this @see Text input example
(@Nullable TextInputClient client)
| 48 | * @see <a href="https://github.com/HumbleUI/JWM/blob/main/examples/java/io/github/humbleui/jwm/examples/PanelTextInput.java">Text input example</a> |
| 49 | */ |
| 50 | @NotNull @Contract("-> this") |
| 51 | public Window setTextInputClient(@Nullable TextInputClient client) { |
| 52 | _textInputClient = client; |
| 53 | return this; |
| 54 | } |
| 55 | |
| 56 | @NotNull @Contract("-> this") |
| 57 | public Window setLayer(@Nullable Layer layer) { |
no outgoing calls
no test coverage detected