Package org.vaadin.miki.markers
Interface WithLabelMixin<SELF extends WithLabelMixin<SELF>>
-
- Type Parameters:
SELF- Self type.
- All Superinterfaces:
HasLabel
- All Known Implementing Classes:
AbstractSuperFloatingPointField,AbstractSuperNumberField,CollectionField,GridMultiSelect,GridSelect,HeaderFooterFieldWrapper,LabelField,MapField,ObjectField,SuperBigDecimalField,SuperCheckbox,SuperDatePicker,SuperDateTimePicker,SuperDoubleField,SuperIntegerField,SuperLongField,SuperTextArea,SuperTextField,VariantField
public interface WithLabelMixin<SELF extends WithLabelMixin<SELF>> extends HasLabel
Mixin interface to support chainingHasLabel.setLabel(String).- Since:
- 2020-04-12
- Author:
- miki
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SELFwithLabel(String label)ChainsHasLabel.setLabel(String)and returns itself.
-
-
-
Method Detail
-
withLabel
default SELF withLabel(String label)
ChainsHasLabel.setLabel(String)and returns itself.- Parameters:
label- Label to set.- Returns:
- This.
- See Also:
HasLabel.setLabel(String)
-
-