Package org.vaadin.miki.markers
Interface WithPlaceholderMixin<SELF extends WithPlaceholderMixin<SELF>>
-
- Type Parameters:
SELF- Self type.
- All Superinterfaces:
HasPlaceholder
- All Known Implementing Classes:
AbstractSuperFloatingPointField,AbstractSuperNumberField,SuperBigDecimalField,SuperDatePicker,SuperDoubleField,SuperIntegerField,SuperLongField,SuperTextArea,SuperTextField
public interface WithPlaceholderMixin<SELF extends WithPlaceholderMixin<SELF>> extends HasPlaceholder
Mixin interface to support chainingHasPlaceholder.setPlaceholder(String).- Since:
- 2020-04-12
- Author:
- miki
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SELFwithPlaceholder(String placeholder)ChainsHasPlaceholder.setPlaceholder(String)and returns itself.-
Methods inherited from interface org.vaadin.miki.markers.HasPlaceholder
getPlaceholder, setPlaceholder
-
-
-
-
Method Detail
-
withPlaceholder
default SELF withPlaceholder(String placeholder)
ChainsHasPlaceholder.setPlaceholder(String)and returns itself.- Parameters:
placeholder- Placeholder to use.- Returns:
- This.
- See Also:
HasPlaceholder.setPlaceholder(String)
-
-