Package org.vaadin.firitin.fluency.ui
Interface FluentKeyNotifier<S extends com.vaadin.flow.component.InputNotifier>
- All Superinterfaces:
com.vaadin.flow.component.KeyNotifier
,Serializable
- All Known Subinterfaces:
FluentVaadinTextField<S,
F, T>
- All Known Implementing Classes:
VBigDecimalField
,VEmailField
,VIntegerField
,VNumberField
,VPasswordField
,VTextArea
,VTextField
public interface FluentKeyNotifier<S extends com.vaadin.flow.component.InputNotifier>
extends com.vaadin.flow.component.KeyNotifier
-
Method Summary
Modifier and TypeMethodDescriptiondefault S
withKeyDownListener
(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener) default S
withKeyDownListener
(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers) default S
withKeyPressListener
(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener) default S
withKeyPressListener
(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers) default S
withKeyUpListener
(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener) default S
withKeyUpListener
(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers) Methods inherited from interface com.vaadin.flow.component.KeyNotifier
addKeyDownListener, addKeyDownListener, addKeyPressListener, addKeyPressListener, addKeyUpListener, addKeyUpListener
-
Method Details
-
withKeyDownListener
default S withKeyDownListener(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener) -
withKeyPressListener
default S withKeyPressListener(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener) -
withKeyUpListener
default S withKeyUpListener(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener) -
withKeyDownListener
default S withKeyDownListener(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers) -
withKeyPressListener
default S withKeyPressListener(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers) -
withKeyUpListener
default S withKeyUpListener(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)
-