Interface WithTooltipMixin<SELF extends WithTooltipMixin<SELF>>

Type Parameters:
SELF - Self type.
All Superinterfaces:
com.vaadin.flow.component.HasElement, com.vaadin.flow.component.shared.HasTooltip, Serializable
All Known Implementing Classes:
AbstractSuperFloatingPointField, AbstractSuperNumberField, IndexedButton, SuperBigDecimalField, SuperCheckbox, SuperDatePicker, SuperDoubleField, SuperIntegerField, SuperLongField, SuperTextArea, SuperTextField

public interface WithTooltipMixin<SELF extends WithTooltipMixin<SELF>> extends com.vaadin.flow.component.shared.HasTooltip
Mixin interface to support chaining HasTooltip.setTooltipText(String).
Since:
2023-01-26
Author:
jc
  • Method Summary

    Modifier and Type
    Method
    Description
    default SELF
    Chains HasTooltip.setTooltipText(String) and returns itself.

    Methods inherited from interface com.vaadin.flow.component.HasElement

    getElement

    Methods inherited from interface com.vaadin.flow.component.shared.HasTooltip

    getTooltip, setTooltipText
  • Method Details

    • withTooltipText

      default SELF withTooltipText(String title)
      Chains HasTooltip.setTooltipText(String) and returns itself.
      Parameters:
      title - Title to use.
      Returns:
      This.
      See Also:
      • HasTooltip.setTooltipText(String)