Package org.vaadin.miki.markers
Interface WithReceivingSelectionEventsFromClientMixin<SELF extends CanReceiveSelectionEventsFromClient>
-
- Type Parameters:
SELF- Self type.
- All Superinterfaces:
CanReceiveSelectionEventsFromClient
- All Known Implementing Classes:
AbstractSuperFloatingPointField,AbstractSuperNumberField,SuperBigDecimalField,SuperDatePicker,SuperDoubleField,SuperIntegerField,SuperLongField,SuperTextArea,SuperTextField
public interface WithReceivingSelectionEventsFromClientMixin<SELF extends CanReceiveSelectionEventsFromClient> extends CanReceiveSelectionEventsFromClient
Marker interface for chainingCanReceiveSelectionEventsFromClient.setReceivingSelectionEventsFromClient(boolean).- Since:
- 2020-06-01
- Author:
- miki
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SELFwithReceivingSelectionEventsFromClient(boolean receivingSelectionEventsFromClient)ChainsCanReceiveSelectionEventsFromClient.setReceivingSelectionEventsFromClient(boolean)and returns itself.-
Methods inherited from interface org.vaadin.miki.markers.CanReceiveSelectionEventsFromClient
isReceivingSelectionEventsFromClient, setReceivingSelectionEventsFromClient
-
-
-
-
Method Detail
-
withReceivingSelectionEventsFromClient
default SELF withReceivingSelectionEventsFromClient(boolean receivingSelectionEventsFromClient)
ChainsCanReceiveSelectionEventsFromClient.setReceivingSelectionEventsFromClient(boolean)and returns itself. Note: this feature is by default turned off.- Parameters:
receivingSelectionEventsFromClient- Whether the client should send events about text selection changes.- Returns:
- This.
- See Also:
CanReceiveSelectionEventsFromClient.setReceivingSelectionEventsFromClient(boolean)
-
-