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
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).-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
An abstract adapter class for receiving browser events. -
Method Summary
Modifier and TypeMethodDescriptionvoid
onDocumentComplete
(String url) 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
Called when the location (url) of the browser changed.- Parameters:
url
- the new url- Since:
- 4.2.416
-
onDocumentComplete
Inform the listener that the specified url is completely loaded.- Parameters:
url
- the url which had been loaded- Since:
- 4.2.416
-