Interface SpellCheckCompleted

All Superinterfaces:
BrowserEvent, Event

public interface SpellCheckCompleted extends BrowserEvent
An event indicating that spell checking on the frame has been completed.
  • Method Summary

    Modifier and Type
    Method
    Description
    default Browser
    Returns the Browser instance initiated this event.
    default String
    Returns a string that represents the text that has been checked by the spell checker.
    default Frame
    Returns the Frame instance in which spell checking has been completed.
    Returns an immutable list of the spell checking results.
  • Method Details

    • browser

      default Browser browser()
      Description copied from interface: BrowserEvent
      Returns the Browser instance initiated this event.
      Specified by:
      browser in interface BrowserEvent
    • frame

      default Frame frame()
      Returns the Frame instance in which spell checking has been completed.
    • checkedText

      default String checkedText()
      Returns a string that represents the text that has been checked by the spell checker.
    • results

      default List<SpellCheckingResult> results()
      Returns an immutable list of the spell checking results.