Interface BrowserListener

All Known Implementing Classes:
BrowserListener.Adapter

public interface BrowserListener
Interface for listener on browser change events.
The class that is interested in processing a browser event either implements this interface (and all the methods it contains) or extends the abstract BrowserListener.Adapter class (overriding only the methods of interest).
Since:
4.2.416
See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static class 
    An abstract adapter class for receiving browser events.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Inform the listener that the specified url is completely loaded.
    void
    onLocationChange(@NotNull String url)
    Called when the location (url) of the browser changed.
  • Method Details

    • onLocationChange

      void onLocationChange(@NotNull @NotNull String url)
      Called when the location (url) of the browser changed.
      Parameters:
      url - the new url
      Since:
      4.2.416
    • onDocumentComplete

      void onDocumentComplete(String url)
      Inform the listener that the specified url is completely loaded.
      Parameters:
      url - the url which had been loaded
      Since:
      4.2.416