Interface TooltipEvent


public interface TooltipEvent
Represents an event fired when an element's tooltip, aka title, element is changed.
  • Method Summary

    Modifier and Type
    Method
    Description
    @Nullable Element
    Get the new tooltip element being set.
    @Nullable Element
    Get the old tooltip element being removed.
  • Method Details

    • getOldTooltip

      @Nullable @Nullable Element getOldTooltip()
      Get the old tooltip element being removed.
      Returns:
      Old tooltip element, or null, if there was no previous tooltip element
    • getNewTooltip

      @Nullable @Nullable Element getNewTooltip()
      Get the new tooltip element being set.
      Returns:
      New tooltip element, or null, if a tooltip is being removed.