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
All Methods Instance Methods Default Methods Modifier and Type Method Description default SwithKeyDownListener(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener)default SwithKeyDownListener(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)default SwithKeyPressListener(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener)default SwithKeyPressListener(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)default SwithKeyUpListener(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener)default SwithKeyUpListener(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)
-
-
-
Method Detail
-
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)
-
-