Package org.vaadin.miki.markers
Interface WithTitleMixin<SELF extends WithTitleMixin<SELF>>
-
- Type Parameters:
SELF- Self type.
- All Superinterfaces:
HasTitle
- All Known Implementing Classes:
AbstractSuperFloatingPointField,AbstractSuperNumberField,IndexedButton,SuperBigDecimalField,SuperCheckbox,SuperDatePicker,SuperDoubleField,SuperIntegerField,SuperLongField,SuperTextArea,SuperTextField
public interface WithTitleMixin<SELF extends WithTitleMixin<SELF>> extends HasTitle
Mixin interface to support chainingHasTitle.setTitle(String).- Since:
- 2020-04-12
- Author:
- miki
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SELFwithTitle(String title)ChainsHasTitle.setTitle(String)and returns itself.
-
-
-
Method Detail
-
withTitle
default SELF withTitle(String title)
ChainsHasTitle.setTitle(String)and returns itself.- Parameters:
title- Title to use.- Returns:
- This.
- See Also:
HasTitle.setTitle(String)
-
-